Package owl.translations
Enum LTL2NAFunction.Constructions
- java.lang.Object
-
- java.lang.Enum<LTL2NAFunction.Constructions>
-
- owl.translations.LTL2NAFunction.Constructions
-
- All Implemented Interfaces:
Serializable
,Comparable<LTL2NAFunction.Constructions>
- Enclosing class:
- LTL2NAFunction
public static enum LTL2NAFunction.Constructions extends Enum<LTL2NAFunction.Constructions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUCHI
CO_SAFETY
GENERALIZED_BUCHI
SAFETY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LTL2NAFunction.Constructions
valueOf(String name)
Returns the enum constant of this type with the specified name.static LTL2NAFunction.Constructions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SAFETY
public static final LTL2NAFunction.Constructions SAFETY
-
CO_SAFETY
public static final LTL2NAFunction.Constructions CO_SAFETY
-
BUCHI
public static final LTL2NAFunction.Constructions BUCHI
-
GENERALIZED_BUCHI
public static final LTL2NAFunction.Constructions GENERALIZED_BUCHI
-
-
Method Detail
-
values
public static LTL2NAFunction.Constructions[] 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 (LTL2NAFunction.Constructions c : LTL2NAFunction.Constructions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LTL2NAFunction.Constructions 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
-
-