Package de.sebinside.dcp.dsl.generator
Enum GlobalConstants.Prefixes
- java.lang.Object
-
- java.lang.Enum<GlobalConstants.Prefixes>
-
- de.sebinside.dcp.dsl.generator.GlobalConstants.Prefixes
-
- All Implemented Interfaces:
Serializable
,Comparable<GlobalConstants.Prefixes>
- Enclosing class:
- GlobalConstants
public static enum GlobalConstants.Prefixes extends Enum<GlobalConstants.Prefixes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHARACTERISTIC_SET_VARIABLE
CHARACTERISTIC_VARIABLE
CHARACTERISTICS_CLASS
CLASS_VARIABLE
CONSTRAINT
TEMPORAL_VARIABLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static GlobalConstants.Prefixes
valueOf(String name)
Returns the enum constant of this type with the specified name.static GlobalConstants.Prefixes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONSTRAINT
public static final GlobalConstants.Prefixes CONSTRAINT
-
CHARACTERISTICS_CLASS
public static final GlobalConstants.Prefixes CHARACTERISTICS_CLASS
-
CLASS_VARIABLE
public static final GlobalConstants.Prefixes CLASS_VARIABLE
-
CHARACTERISTIC_VARIABLE
public static final GlobalConstants.Prefixes CHARACTERISTIC_VARIABLE
-
CHARACTERISTIC_SET_VARIABLE
public static final GlobalConstants.Prefixes CHARACTERISTIC_SET_VARIABLE
-
TEMPORAL_VARIABLE
public static final GlobalConstants.Prefixes TEMPORAL_VARIABLE
-
-
Method Detail
-
values
public static GlobalConstants.Prefixes[] 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 (GlobalConstants.Prefixes c : GlobalConstants.Prefixes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GlobalConstants.Prefixes 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<GlobalConstants.Prefixes>
-
-