public enum KinectTiltStatus extends Enum<KinectTiltStatus>
Enum Constant and Description |
---|
TILT_STATUS_LIMIT
The device is at its limit
|
TILT_STATUS_MOVING
The device is moving
|
TILT_STATUS_STOPPED
The device is stationary
|
Modifier and Type | Method and Description |
---|---|
static KinectTiltStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KinectTiltStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KinectTiltStatus TILT_STATUS_STOPPED
public static final KinectTiltStatus TILT_STATUS_LIMIT
public static final KinectTiltStatus TILT_STATUS_MOVING
public static KinectTiltStatus[] values()
for (KinectTiltStatus c : KinectTiltStatus.values()) System.out.println(c);
public static KinectTiltStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null