public enum HeadGazeDirection extends java.lang.Enum<HeadGazeDirection>
Enum Constant and Description |
---|
GAZE_ERROR |
GAZE_FRONTAL |
GAZE_INVALID_FACE_ID |
GAZE_LEFT |
GAZE_LEFT_45 |
GAZE_NOT_KNOWN |
GAZE_RIGHT |
GAZE_RIGHT_45 |
Modifier and Type | Method and Description |
---|---|
static HeadGazeDirection |
setHeadGazeDirection(int index) |
static HeadGazeDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HeadGazeDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeadGazeDirection GAZE_ERROR
public static final HeadGazeDirection GAZE_FRONTAL
public static final HeadGazeDirection GAZE_INVALID_FACE_ID
public static final HeadGazeDirection GAZE_LEFT
public static final HeadGazeDirection GAZE_LEFT_45
public static final HeadGazeDirection GAZE_NOT_KNOWN
public static final HeadGazeDirection GAZE_RIGHT
public static final HeadGazeDirection GAZE_RIGHT_45
public static HeadGazeDirection setHeadGazeDirection(int index)
public static HeadGazeDirection 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 HeadGazeDirection[] values()
for (HeadGazeDirection c : HeadGazeDirection.values()) System.out.println(c);