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