Package info.psidev.cvmapping
Enum CvMappingRule.CvTermsCombinationLogic
- java.lang.Object
-
- java.lang.Enum<CvMappingRule.CvTermsCombinationLogic>
-
- info.psidev.cvmapping.CvMappingRule.CvTermsCombinationLogic
-
- All Implemented Interfaces:
Serializable
,Comparable<CvMappingRule.CvTermsCombinationLogic>
- Enclosing class:
- CvMappingRule
public static enum CvMappingRule.CvTermsCombinationLogic extends Enum<CvMappingRule.CvTermsCombinationLogic>
Java-Klasse für null.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="OR"/> <enumeration value="AND"/> <enumeration value="XOR"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CvMappingRule.CvTermsCombinationLogic
fromValue(String v)
String
value()
static CvMappingRule.CvTermsCombinationLogic
valueOf(String name)
Returns the enum constant of this type with the specified name.static CvMappingRule.CvTermsCombinationLogic[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OR
public static final CvMappingRule.CvTermsCombinationLogic OR
-
AND
public static final CvMappingRule.CvTermsCombinationLogic AND
-
XOR
public static final CvMappingRule.CvTermsCombinationLogic XOR
-
-
Method Detail
-
values
public static CvMappingRule.CvTermsCombinationLogic[] 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 (CvMappingRule.CvTermsCombinationLogic c : CvMappingRule.CvTermsCombinationLogic.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CvMappingRule.CvTermsCombinationLogic 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
-
fromValue
public static CvMappingRule.CvTermsCombinationLogic fromValue(String v)
-
-