Enum ModelElementTypeFinder.ClassType
- java.lang.Object
-
- java.lang.Enum<ModelElementTypeFinder.ClassType>
-
- net.ssehub.easy.varModel.model.filter.ModelElementTypeFinder.ClassType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ModelElementTypeFinder.ClassType>
- Enclosing class:
- ModelElementTypeFinder
public static enum ModelElementTypeFinder.ClassType extends java.lang.Enum<ModelElementTypeFinder.ClassType>
Type descriptions.- Author:
- kroeher
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPOUNDDECISION_VARIABLE_DECLARATIONENUMMAPPINGORDERED_ENUMPROJECT
-
Constructor Summary
Constructors Modifier Constructor Description privateClassType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModelElementTypeFinder.ClassTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ModelElementTypeFinder.ClassType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROJECT
public static final ModelElementTypeFinder.ClassType PROJECT
-
DECISION_VARIABLE_DECLARATION
public static final ModelElementTypeFinder.ClassType DECISION_VARIABLE_DECLARATION
-
ENUM
public static final ModelElementTypeFinder.ClassType ENUM
-
ORDERED_ENUM
public static final ModelElementTypeFinder.ClassType ORDERED_ENUM
-
COMPOUND
public static final ModelElementTypeFinder.ClassType COMPOUND
-
MAPPING
public static final ModelElementTypeFinder.ClassType MAPPING
-
-
Method Detail
-
values
public static ModelElementTypeFinder.ClassType[] 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 (ModelElementTypeFinder.ClassType c : ModelElementTypeFinder.ClassType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelElementTypeFinder.ClassType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-