public enum PersonOrientation extends java.lang.Enum<PersonOrientation>
Enum Constant and Description |
---|
ORIENTATION_45_DEGREE_LEFT |
ORIENTATION_45_DEGREE_RIGHT |
ORIENTATION_FRONTAL |
ORIENTATION_NOT_DETECT |
ORIENTATION_PROFILE_LEFT |
ORIENTATION_PROFILE_RIGHT |
ORIENTATION_REAR |
Modifier and Type | Method and Description |
---|---|
static PersonOrientation |
getPersonOrientation(int value) |
static PersonOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PersonOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersonOrientation ORIENTATION_45_DEGREE_LEFT
public static final PersonOrientation ORIENTATION_45_DEGREE_RIGHT
public static final PersonOrientation ORIENTATION_FRONTAL
public static final PersonOrientation ORIENTATION_NOT_DETECT
public static final PersonOrientation ORIENTATION_PROFILE_LEFT
public static final PersonOrientation ORIENTATION_PROFILE_RIGHT
public static final PersonOrientation ORIENTATION_REAR
public static PersonOrientation getPersonOrientation(int value)
public static PersonOrientation 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 PersonOrientation[] values()
for (PersonOrientation c : PersonOrientation.values()) System.out.println(c);