public enum ViewingDirection extends Enum<ViewingDirection>
| Enum Constant and Description |
|---|
BTT
The object is read from the bottom to the top.
|
LTR
The object is read from left to right, and is the default if not specified.
|
RTL
The object is read from right to left.
|
TTB
The object is read from the top to the bottom.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static ViewingDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewingDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewingDirection LTR
public static final ViewingDirection RTL
public static final ViewingDirection TTB
public static final ViewingDirection BTT
public static ViewingDirection[] values()
for (ViewingDirection c : ViewingDirection.values()) System.out.println(c);
public static ViewingDirection 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 String getValue()
Copyright © 2016. All rights reserved.