Package com.regula.facesdk.enums
Enum LivenessBackendErrorCode
- java.lang.Object
-
- java.lang.Enum<LivenessBackendErrorCode>
-
- com.regula.facesdk.enums.LivenessBackendErrorCode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LivenessBackendErrorCode>
public enum LivenessBackendErrorCode extends java.lang.Enum<LivenessBackendErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LivenessBackendErrorCode
createValue(int code)
int
getValue()
static LivenessBackendErrorCode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LivenessBackendErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED
public static final LivenessBackendErrorCode UNDEFINED
-
NO_LICENSE
public static final LivenessBackendErrorCode NO_LICENSE
-
NOT_INITIALIZED
public static final LivenessBackendErrorCode NOT_INITIALIZED
-
COMMAND_IS_NOT_SUPPORTED
public static final LivenessBackendErrorCode COMMAND_IS_NOT_SUPPORTED
-
PARAMS_READ_ERROR
public static final LivenessBackendErrorCode PARAMS_READ_ERROR
-
LOW_QUALITY
public static final LivenessBackendErrorCode LOW_QUALITY
-
TRACK_BREAK
public static final LivenessBackendErrorCode TRACK_BREAK
-
CLOSED_EYES_DETECTED
public static final LivenessBackendErrorCode CLOSED_EYES_DETECTED
-
HIGH_ASYMMETRY
public static final LivenessBackendErrorCode HIGH_ASYMMETRY
-
FACE_OVER_EMOTIONAL
public static final LivenessBackendErrorCode FACE_OVER_EMOTIONAL
-
SUNGLASSES_DETECTED
public static final LivenessBackendErrorCode SUNGLASSES_DETECTED
-
SMALL_AGE
public static final LivenessBackendErrorCode SMALL_AGE
-
HEADDRESS_DETECTED
public static final LivenessBackendErrorCode HEADDRESS_DETECTED
-
MEDICINE_MASK_DETECTED
public static final LivenessBackendErrorCode MEDICINE_MASK_DETECTED
-
OCCLUSION_DETECTED
public static final LivenessBackendErrorCode OCCLUSION_DETECTED
-
FOREHEAD_GLASSES_DETECTED
public static final LivenessBackendErrorCode FOREHEAD_GLASSES_DETECTED
-
MOUTH_OPENED
public static final LivenessBackendErrorCode MOUTH_OPENED
-
ART_MASK_DETECTED
public static final LivenessBackendErrorCode ART_MASK_DETECTED
-
NOT_MATCHED
public static final LivenessBackendErrorCode NOT_MATCHED
-
IMAGES_COUNT_LIMIT_EXCEEDED
public static final LivenessBackendErrorCode IMAGES_COUNT_LIMIT_EXCEEDED
-
ELECTRONIC_DEVICE_DETECTED
public static final LivenessBackendErrorCode ELECTRONIC_DEVICE_DETECTED
-
WRONG_GEO
public static final LivenessBackendErrorCode WRONG_GEO
-
WRONG_OF
public static final LivenessBackendErrorCode WRONG_OF
-
WRONG_VIEW
public static final LivenessBackendErrorCode WRONG_VIEW
-
-
Method Detail
-
values
public static LivenessBackendErrorCode[] 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 (LivenessBackendErrorCode c : LivenessBackendErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LivenessBackendErrorCode valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public int getValue()
-
createValue
public static LivenessBackendErrorCode createValue(int code)
-
-