public enum RequirementRelationType extends java.lang.Enum<RequirementRelationType>
Enum Constant and Description |
---|
CONTAINS |
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
NOT_EQUAL |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getRelType() |
static RequirementRelationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequirementRelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequirementRelationType EQUAL
public static final RequirementRelationType LESS_OR_EQUAL
public static final RequirementRelationType GREATER_OR_EQUAL
public static final RequirementRelationType GREATER
public static final RequirementRelationType LESS
public static final RequirementRelationType CONTAINS
public static final RequirementRelationType NOT_EQUAL
public static RequirementRelationType[] values()
for (RequirementRelationType c : RequirementRelationType.values()) System.out.println(c);
public static RequirementRelationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getRelType()