public enum FaceAuthLivenessAction extends java.lang.Enum<FaceAuthLivenessAction>
| Enum Constant and Description | 
|---|
BLINK
Face engine is waiting for user to blink 
 | 
KEEP_STILL
User must stay still in front of the camera 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static FaceAuthLivenessAction | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static FaceAuthLivenessAction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FaceAuthLivenessAction BLINK
public static final FaceAuthLivenessAction KEEP_STILL
public static FaceAuthLivenessAction[] values()
for (FaceAuthLivenessAction c : FaceAuthLivenessAction.values()) System.out.println(c);
public static FaceAuthLivenessAction valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null