public enum RobotFaceEnrollMode extends java.lang.Enum<RobotFaceEnrollMode>
Enum Constant and Description |
---|
MODE_NO_POSE_CHECK |
MODE_WITH_POSE_CHECK |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static RobotFaceEnrollMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RobotFaceEnrollMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RobotFaceEnrollMode MODE_NO_POSE_CHECK
public static final RobotFaceEnrollMode MODE_WITH_POSE_CHECK
public int getValue()
public static RobotFaceEnrollMode 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 nullpublic static RobotFaceEnrollMode[] values()
for (RobotFaceEnrollMode c : RobotFaceEnrollMode.values()) System.out.println(c);