| Enum Constant and Description |
|---|
Cross
Specifies that the marks cross the axis.
|
Inside
Specifies that the marks are inside the axis.
|
None
Specifies no marks.
|
Outside
Specifies that the marks are outside the axis.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
SIZE |
| Modifier and Type | Method and Description |
|---|---|
static TickMark |
forValue(int value) |
int |
getValue() |
static TickMark |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TickMark[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickMark None
public static final TickMark Inside
public static final TickMark Outside
public static final TickMark Cross
public static final int SIZE
public static TickMark[] values()
for (TickMark c : TickMark.values()) System.out.println(c);
public static TickMark 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 nullpublic int getValue()
public static TickMark forValue(int value)