Enum SingleAnySubtypeType
- java.lang.Object
-
- java.lang.Enum<SingleAnySubtypeType>
-
- io.mosip.kernel.core.cbeffutil.jaxbclasses.SingleAnySubtypeType
-
- All Implemented Interfaces:
Serializable,Comparable<SingleAnySubtypeType>
public enum SingleAnySubtypeType extends Enum<SingleAnySubtypeType>
Java class for SingleAnySubtypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SingleAnySubtypeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Left"/> <enumeration value="Right"/> <enumeration value="Thumb"/> <enumeration value="IndexFinger"/> <enumeration value="MiddleFinger"/> <enumeration value="RingFinger"/> <enumeration value="LittleFinger"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INDEX_FINGERLEFTLITTLE_FINGERMIDDLE_FINGERRIGHTRING_FINGERTHUMB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SingleAnySubtypeTypefromValue(String v)Stringvalue()static SingleAnySubtypeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SingleAnySubtypeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT
public static final SingleAnySubtypeType LEFT
-
RIGHT
public static final SingleAnySubtypeType RIGHT
-
THUMB
public static final SingleAnySubtypeType THUMB
-
INDEX_FINGER
public static final SingleAnySubtypeType INDEX_FINGER
-
MIDDLE_FINGER
public static final SingleAnySubtypeType MIDDLE_FINGER
-
RING_FINGER
public static final SingleAnySubtypeType RING_FINGER
-
LITTLE_FINGER
public static final SingleAnySubtypeType LITTLE_FINGER
-
-
Method Detail
-
values
public static SingleAnySubtypeType[] 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 (SingleAnySubtypeType c : SingleAnySubtypeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SingleAnySubtypeType 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 SingleAnySubtypeType fromValue(String v)
-
-