public enum TickLabelOrientation extends java.lang.Enum<TickLabelOrientation>
| Enum Constant and Description |
|---|
OrientationAutomatic
Specifies that the text orientation is set by Excel.
|
OrientationDownward
Specifies that the text is oriented down.
|
OrientationHorizontal
Specifies that the characters are horizontal.
|
OrientationUpward
Specifies that the text is oriented upward.
|
OrientationVertical
Specifies that the characters are vertical.
|
| Modifier and Type | Method and Description |
|---|---|
static TickLabelOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TickLabelOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickLabelOrientation OrientationUpward
public static final TickLabelOrientation OrientationDownward
public static final TickLabelOrientation OrientationVertical
public static final TickLabelOrientation OrientationHorizontal
public static final TickLabelOrientation OrientationAutomatic
public static TickLabelOrientation[] values()
for (TickLabelOrientation c : TickLabelOrientation.values()) System.out.println(c);
public static TickLabelOrientation 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