public enum RotationDirectionEnum extends Enum<RotationDirectionEnum>
| Enum Constant and Description |
|---|
CLOCKWISE
Clockwise.
|
COUNTERCW
Counter clockwise.
|
UNINTERPRETED
Uninterpreted value.
|
| Modifier and Type | Method and Description |
|---|---|
static RotationDirectionEnum |
fromValue(int value)
Get enum from value.
|
static RotationDirectionEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RotationDirectionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RotationDirectionEnum CLOCKWISE
public static final RotationDirectionEnum COUNTERCW
public static final RotationDirectionEnum UNINTERPRETED
public static RotationDirectionEnum[] values()
for (RotationDirectionEnum c : RotationDirectionEnum.values()) System.out.println(c);
public static RotationDirectionEnum 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 nullpublic static RotationDirectionEnum fromValue(int value)
value - valueCopyright © 2018. All rights reserved.