Enum Biometric
- java.lang.Object
-
- java.lang.Enum<Biometric>
-
- io.mosip.kernel.packetmanager.constants.Biometric
-
- All Implemented Interfaces:
Serializable,Comparable<Biometric>
public enum Biometric extends Enum<Biometric>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FACELEFT_INDEXLEFT_IRISLEFT_LITTLELEFT_MIDDLELEFT_RINGLEFT_THUMBRIGHT_INDEXRIGHT_IRISRIGHT_LITTLERIGHT_MIDDLERIGHT_RINGRIGHT_THUMB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAttributeName()static BiometricgetBiometricByAttribute(String attributeName)static BiometricgetBiometricByMDMConstant(String mdmConstant)static List<String>getDefaultAttributes(String modalityName)static longgetFormatType(SingleType singleType)StringgetMdmConstant()StringgetModalityName()static StringgetModalityNameByAttribute(String attributeName)StringgetModalityShortName()SingleTypegetSingleType()static SingleTypegetSingleTypeByAttribute(String attributeName)voidsetAttributes(String attributeName)voidsetMdsConstant(String mdmConstant)voidsetModalityName(String modalityName)voidsetModalityShortName(String modalityShortName)voidsetSingleType(SingleType singleType)static BiometricvalueOf(String name)Returns the enum constant of this type with the specified name.static Biometric[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT_INDEX
public static final Biometric LEFT_INDEX
-
LEFT_MIDDLE
public static final Biometric LEFT_MIDDLE
-
LEFT_RING
public static final Biometric LEFT_RING
-
LEFT_LITTLE
public static final Biometric LEFT_LITTLE
-
RIGHT_INDEX
public static final Biometric RIGHT_INDEX
-
RIGHT_MIDDLE
public static final Biometric RIGHT_MIDDLE
-
RIGHT_RING
public static final Biometric RIGHT_RING
-
RIGHT_LITTLE
public static final Biometric RIGHT_LITTLE
-
LEFT_THUMB
public static final Biometric LEFT_THUMB
-
RIGHT_THUMB
public static final Biometric RIGHT_THUMB
-
RIGHT_IRIS
public static final Biometric RIGHT_IRIS
-
LEFT_IRIS
public static final Biometric LEFT_IRIS
-
FACE
public static final Biometric FACE
-
-
Method Detail
-
values
public static Biometric[] 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 (Biometric c : Biometric.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Biometric 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
-
getModalityName
public String getModalityName()
-
setModalityName
public void setModalityName(String modalityName)
-
getAttributeName
public String getAttributeName()
-
setAttributes
public void setAttributes(String attributeName)
-
getSingleType
public SingleType getSingleType()
-
setSingleType
public void setSingleType(SingleType singleType)
-
getModalityShortName
public String getModalityShortName()
-
setModalityShortName
public void setModalityShortName(String modalityShortName)
-
getSingleTypeByAttribute
public static SingleType getSingleTypeByAttribute(String attributeName)
-
getFormatType
public static long getFormatType(SingleType singleType)
-
getMdmConstant
public String getMdmConstant()
-
setMdsConstant
public void setMdsConstant(String mdmConstant)
-
-