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 SummaryEnum Constants Enum Constant Description ALL_FROM_SETANY_FROM_SETCAPTURES_RANGEHIGHER_OR_EQUALINSIDE_RANGELOWER_OR_EQUALNO_RULEONE_FROM_SETPART_OF_RANGEPART_OF_RANGE_OR_HIGHERPART_OF_RANGE_OR_LOWERSAME_SET
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CompatibilityCheckOperatorSTfromValue(String v)Stringvalue()static CompatibilityCheckOperatorSTvalueOf(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_RULEpublic static final CompatibilityCheckOperatorST NO_RULE 
 - 
SAME_SETpublic static final CompatibilityCheckOperatorST SAME_SET 
 - 
ALL_FROM_SETpublic static final CompatibilityCheckOperatorST ALL_FROM_SET 
 - 
ANY_FROM_SETpublic static final CompatibilityCheckOperatorST ANY_FROM_SET 
 - 
ONE_FROM_SETpublic static final CompatibilityCheckOperatorST ONE_FROM_SET 
 - 
LOWER_OR_EQUALpublic static final CompatibilityCheckOperatorST LOWER_OR_EQUAL 
 - 
HIGHER_OR_EQUALpublic static final CompatibilityCheckOperatorST HIGHER_OR_EQUAL 
 - 
INSIDE_RANGEpublic static final CompatibilityCheckOperatorST INSIDE_RANGE 
 - 
PART_OF_RANGEpublic static final CompatibilityCheckOperatorST PART_OF_RANGE 
 - 
PART_OF_RANGE_OR_LOWERpublic static final CompatibilityCheckOperatorST PART_OF_RANGE_OR_LOWER 
 - 
PART_OF_RANGE_OR_HIGHERpublic static final CompatibilityCheckOperatorST PART_OF_RANGE_OR_HIGHER 
 - 
CAPTURES_RANGEpublic static final CompatibilityCheckOperatorST CAPTURES_RANGE 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
valuepublic String value() 
 - 
fromValuepublic static CompatibilityCheckOperatorST fromValue(String v) 
 
- 
 
-