Package com.regula.facesdk.enums
Enum LivenessProcessStatus
- java.lang.Object
-
- java.lang.Enum<LivenessProcessStatus>
-
- com.regula.facesdk.enums.LivenessProcessStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LivenessProcessStatus>
public enum LivenessProcessStatus extends java.lang.Enum<LivenessProcessStatus>
The status of the Liveness processing.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED
FIT_FACE
LOW_BRIGHTNESS
MOVE_AWAY
MOVE_CLOSER
NEW_SESSION
NEXT_STAGE
PREPARING
PROCESSING
PROGRESS
REMOVE_OCCLUSION
RETRY
SECTOR_CHANGED
START
SUCCESS
TURN_HEAD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LivenessProcessStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LivenessProcessStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final LivenessProcessStatus START
-
PREPARING
public static final LivenessProcessStatus PREPARING
-
NEW_SESSION
public static final LivenessProcessStatus NEW_SESSION
-
NEXT_STAGE
public static final LivenessProcessStatus NEXT_STAGE
-
SECTOR_CHANGED
public static final LivenessProcessStatus SECTOR_CHANGED
-
PROGRESS
public static final LivenessProcessStatus PROGRESS
-
LOW_BRIGHTNESS
public static final LivenessProcessStatus LOW_BRIGHTNESS
-
FIT_FACE
public static final LivenessProcessStatus FIT_FACE
-
MOVE_AWAY
public static final LivenessProcessStatus MOVE_AWAY
-
MOVE_CLOSER
public static final LivenessProcessStatus MOVE_CLOSER
-
TURN_HEAD
public static final LivenessProcessStatus TURN_HEAD
-
PROCESSING
public static final LivenessProcessStatus PROCESSING
-
FAILED
public static final LivenessProcessStatus FAILED
-
RETRY
public static final LivenessProcessStatus RETRY
-
SUCCESS
public static final LivenessProcessStatus SUCCESS
-
REMOVE_OCCLUSION
public static final LivenessProcessStatus REMOVE_OCCLUSION
-
-
Method Detail
-
values
public static LivenessProcessStatus[] 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 (LivenessProcessStatus c : LivenessProcessStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LivenessProcessStatus 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
-
-