Enum AbstractConstraintProcessor.ExpressionType
- java.lang.Object
-
- java.lang.Enum<AbstractConstraintProcessor.ExpressionType>
-
- net.ssehub.easy.reasoning.sseReasoner.functions.AbstractConstraintProcessor.ExpressionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AbstractConstraintProcessor.ExpressionType>
- Enclosing class:
- AbstractConstraintProcessor
public static enum AbstractConstraintProcessor.ExpressionType extends java.lang.Enum<AbstractConstraintProcessor.ExpressionType>
Expression types.- Author:
- Holger Eichelberger
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATION_DEFAULTASSIGNMENT_CONSTRAINTCONSTRAINTCONSTRAINT_VALUEDEFAULT
-
Constructor Summary
Constructors Modifier Constructor Description privateExpressionType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractConstraintProcessor.ExpressionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AbstractConstraintProcessor.ExpressionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final AbstractConstraintProcessor.ExpressionType DEFAULT
-
ANNOTATION_DEFAULT
public static final AbstractConstraintProcessor.ExpressionType ANNOTATION_DEFAULT
-
CONSTRAINT_VALUE
public static final AbstractConstraintProcessor.ExpressionType CONSTRAINT_VALUE
-
ASSIGNMENT_CONSTRAINT
public static final AbstractConstraintProcessor.ExpressionType ASSIGNMENT_CONSTRAINT
-
CONSTRAINT
public static final AbstractConstraintProcessor.ExpressionType CONSTRAINT
-
-
Method Detail
-
values
public static AbstractConstraintProcessor.ExpressionType[] 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 (AbstractConstraintProcessor.ExpressionType c : AbstractConstraintProcessor.ExpressionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractConstraintProcessor.ExpressionType 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
-
-