public enum TickPosition extends java.lang.Enum<TickPosition>
Enum Constant and Description |
---|
Both
Ticks are rendered on both sides of the trackbar.
|
Far
Ticks are rendered on the right or bottom side of the trackbar.
|
Near
Ticks are rendered on the left or top side of the trackbar.
|
None
There are no ticks rendered.
|
Modifier and Type | Method and Description |
---|---|
static TickPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TickPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickPosition Near
public static final TickPosition Far
public static final TickPosition Both
public static final TickPosition None
public static TickPosition[] values()
for (TickPosition c : TickPosition.values()) System.out.println(c);
public static TickPosition 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