Enum CbeffDocType
- java.lang.Object
-
- java.lang.Enum<CbeffDocType>
-
- io.mosip.authentication.core.spi.bioauth.CbeffDocType
-
- All Implemented Interfaces:
Serializable,Comparable<CbeffDocType>
public enum CbeffDocType extends Enum<CbeffDocType>
General-purpose ofCbeffDocTypeclass used to Cbeff Documents Type- Author:
- Dinesh Karuppiah.T
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()io.mosip.kernel.biometrics.constant.BiometricTypegetType()longgetValue()static CbeffDocTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CbeffDocType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FINGER
public static final CbeffDocType FINGER
Enum for Finger
-
FMR
public static final CbeffDocType FMR
Enum for FMR
-
IRIS
public static final CbeffDocType IRIS
Enum for IRIS
-
FACE
public static final CbeffDocType FACE
Enum for Face
-
-
Method Detail
-
values
public static CbeffDocType[] 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 (CbeffDocType c : CbeffDocType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CbeffDocType 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
-
getName
public String getName()
-
getType
public io.mosip.kernel.biometrics.constant.BiometricType getType()
-
getValue
public long getValue()
-
-