public static enum Orientation.VerticalOrientation extends Enum<Orientation.VerticalOrientation>
Modifier and Type | Method and Description |
---|---|
static Orientation.VerticalOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Orientation.VerticalOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Orientation.VerticalOrientation North
public static final Orientation.VerticalOrientation South
public static final Orientation.VerticalOrientation Center
public static Orientation.VerticalOrientation[] values()
for (Orientation.VerticalOrientation c : Orientation.VerticalOrientation.values()) System.out.println(c);
public static Orientation.VerticalOrientation 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 © 2017. All rights reserved.