public enum DataBarDirection extends java.lang.Enum<DataBarDirection>
| Enum Constant and Description |
|---|
Context
Specifies the context.
|
LeftToRight
Specifies left to right.
|
RightToLeft
Specifies right to left.
|
| Modifier and Type | Method and Description |
|---|---|
static DataBarDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataBarDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataBarDirection Context
public static final DataBarDirection LeftToRight
public static final DataBarDirection RightToLeft
public static DataBarDirection[] values()
for (DataBarDirection c : DataBarDirection.values()) System.out.println(c);
public static DataBarDirection 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