public static enum Enum.ForceOrientationProperties extends java.lang.Enum<Enum.ForceOrientationProperties>
| Enum Constant and Description |
|---|
LANDSCAPE
Landscape orientation (the display is wider than it is tall).
|
NONE
Orientation is not defined.
|
PORTRAIT
Portrait orientation (the display is taller than it is wide).
|
| Modifier and Type | Method and Description |
|---|---|
static Enum.ForceOrientationProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enum.ForceOrientationProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enum.ForceOrientationProperties PORTRAIT
public static final Enum.ForceOrientationProperties LANDSCAPE
public static final Enum.ForceOrientationProperties NONE
public static Enum.ForceOrientationProperties[] values()
for (Enum.ForceOrientationProperties c : Enum.ForceOrientationProperties.values()) System.out.println(c);
public static Enum.ForceOrientationProperties 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 null