public static enum TickMark.Indicator extends java.lang.Enum<TickMark.Indicator>
| Modifier and Type | Method and Description |
|---|---|
static TickMark.Indicator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TickMark.Indicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickMark.Indicator LINE
public static final TickMark.Indicator CIRCLE
public static final TickMark.Indicator TRIANGLE
public static final TickMark.Indicator SQUARE
public static TickMark.Indicator[] values()
for (TickMark.Indicator c : TickMark.Indicator.values()) System.out.println(c);
public static TickMark.Indicator 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