public enum TickMarkType extends Enum<TickMarkType>
Enum Constant and Description |
---|
CROSS
Tick marks cross the axis.
|
INSIDE
Tick marks are inside the plot area.
|
NONE
No tick marks.
|
OUTSIDE
Tick marks are outside the plot area.
|
Modifier and Type | Method and Description |
---|---|
static TickMarkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TickMarkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickMarkType CROSS
public static final TickMarkType INSIDE
public static final TickMarkType NONE
public static final TickMarkType OUTSIDE
public static TickMarkType 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 static TickMarkType[] values()
for (TickMarkType c : TickMarkType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.