Package owl.ltl
Enum SyntacticFragment
- java.lang.Object
-
- java.lang.Enum<SyntacticFragment>
-
- owl.ltl.SyntacticFragment
-
- All Implemented Interfaces:
Serializable
,Comparable<SyntacticFragment>
public enum SyntacticFragment extends Enum<SyntacticFragment>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
FGMU
FGX
NNF
SINGLE_STEP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Class<? extends Formula>>
classes()
boolean
contains(Formula formula)
boolean
contains(LabelledFormula formula)
static SyntacticFragment
valueOf(String name)
Returns the enum constant of this type with the specified name.static SyntacticFragment[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final SyntacticFragment ALL
-
NNF
public static final SyntacticFragment NNF
-
FGMU
public static final SyntacticFragment FGMU
-
FGX
public static final SyntacticFragment FGX
-
SINGLE_STEP
public static final SyntacticFragment SINGLE_STEP
-
-
Method Detail
-
values
public static SyntacticFragment[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SyntacticFragment c : SyntacticFragment.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyntacticFragment valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
contains
public boolean contains(Formula formula)
-
contains
public boolean contains(LabelledFormula formula)
-
-