Enum CompatibilityCheckOperatorST
- java.lang.Object
-
- java.lang.Enum<CompatibilityCheckOperatorST>
-
- fi.tut.mei.resdescapi.rdapi.model.rd.CompatibilityCheckOperatorST
-
- All Implemented Interfaces:
Serializable
,Comparable<CompatibilityCheckOperatorST>
public enum CompatibilityCheckOperatorST extends Enum<CompatibilityCheckOperatorST>
Java class for compatibilityCheckOperator_ST.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="compatibilityCheckOperator_ST"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="NO_RULE"/> <enumeration value="SAME_SET"/> <enumeration value="ALL_FROM_SET"/> <enumeration value="ANY_FROM_SET"/> <enumeration value="ONE_FROM_SET"/> <enumeration value="LOWER_OR_EQUAL"/> <enumeration value="HIGHER_OR_EQUAL"/> <enumeration value="INSIDE_RANGE"/> <enumeration value="PART_OF_RANGE"/> <enumeration value="PART_OF_RANGE_OR_LOWER"/> <enumeration value="PART_OF_RANGE_OR_HIGHER"/> <enumeration value="CAPTURES_RANGE"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_FROM_SET
ANY_FROM_SET
CAPTURES_RANGE
HIGHER_OR_EQUAL
INSIDE_RANGE
LOWER_OR_EQUAL
NO_RULE
ONE_FROM_SET
PART_OF_RANGE
PART_OF_RANGE_OR_HIGHER
PART_OF_RANGE_OR_LOWER
SAME_SET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CompatibilityCheckOperatorST
fromValue(String v)
String
value()
static CompatibilityCheckOperatorST
valueOf(String name)
Returns the enum constant of this type with the specified name.static CompatibilityCheckOperatorST[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_RULE
public static final CompatibilityCheckOperatorST NO_RULE
-
SAME_SET
public static final CompatibilityCheckOperatorST SAME_SET
-
ALL_FROM_SET
public static final CompatibilityCheckOperatorST ALL_FROM_SET
-
ANY_FROM_SET
public static final CompatibilityCheckOperatorST ANY_FROM_SET
-
ONE_FROM_SET
public static final CompatibilityCheckOperatorST ONE_FROM_SET
-
LOWER_OR_EQUAL
public static final CompatibilityCheckOperatorST LOWER_OR_EQUAL
-
HIGHER_OR_EQUAL
public static final CompatibilityCheckOperatorST HIGHER_OR_EQUAL
-
INSIDE_RANGE
public static final CompatibilityCheckOperatorST INSIDE_RANGE
-
PART_OF_RANGE
public static final CompatibilityCheckOperatorST PART_OF_RANGE
-
PART_OF_RANGE_OR_LOWER
public static final CompatibilityCheckOperatorST PART_OF_RANGE_OR_LOWER
-
PART_OF_RANGE_OR_HIGHER
public static final CompatibilityCheckOperatorST PART_OF_RANGE_OR_HIGHER
-
CAPTURES_RANGE
public static final CompatibilityCheckOperatorST CAPTURES_RANGE
-
-
Method Detail
-
values
public static CompatibilityCheckOperatorST[] 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 (CompatibilityCheckOperatorST c : CompatibilityCheckOperatorST.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompatibilityCheckOperatorST 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
-
value
public String value()
-
fromValue
public static CompatibilityCheckOperatorST fromValue(String v)
-
-