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