Package io.mosip.mimoto.constant
Enum BiometricType
- java.lang.Object
-
- java.lang.Enum<BiometricType>
-
- io.mosip.mimoto.constant.BiometricType
-
- All Implemented Interfaces:
Serializable,Comparable<BiometricType>
public enum BiometricType extends Enum<BiometricType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DNAEARFACEFINGERFOOTGAITHAND_GEOMETRYIRISKEYSTROKELIP_MOVEMENTRETINASCENTSIGNATURE_SIGNVEINVOICE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BiometricTypefromValue(String v)Stringvalue()static BiometricTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BiometricType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCENT
public static final BiometricType SCENT
-
DNA
public static final BiometricType DNA
-
EAR
public static final BiometricType EAR
-
FACE
public static final BiometricType FACE
-
FINGER
public static final BiometricType FINGER
-
FOOT
public static final BiometricType FOOT
-
VEIN
public static final BiometricType VEIN
-
HAND_GEOMETRY
public static final BiometricType HAND_GEOMETRY
-
IRIS
public static final BiometricType IRIS
-
RETINA
public static final BiometricType RETINA
-
VOICE
public static final BiometricType VOICE
-
GAIT
public static final BiometricType GAIT
-
KEYSTROKE
public static final BiometricType KEYSTROKE
-
LIP_MOVEMENT
public static final BiometricType LIP_MOVEMENT
-
SIGNATURE_SIGN
public static final BiometricType SIGNATURE_SIGN
-
-
Method Detail
-
values
public static BiometricType[] 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 (BiometricType c : BiometricType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BiometricType 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 BiometricType fromValue(String v)
-
-