public enum OrientationType extends Enum<OrientationType>
| Enum Constant and Description |
|---|
OrientationType_Horizontal
The value of this constant is 1
|
OrientationType_None
The value of this constant is 0
|
OrientationType_Vertical
The value of this constant is 2
|
| Modifier and Type | Method and Description |
|---|---|
static OrientationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrientationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrientationType OrientationType_None
The value of this constant is 0
public static final OrientationType OrientationType_Horizontal
The value of this constant is 1
public static final OrientationType OrientationType_Vertical
The value of this constant is 2
public static OrientationType[] values()
for (OrientationType c : OrientationType.values()) System.out.println(c);
public static OrientationType 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 nullCopyright © 2016. All rights reserved.