public static enum TextSlider.SliderComposition extends Enum<TextSlider.SliderComposition>
enum
indicating the composition of the TextSlider
.Enum Constant and Description |
---|
SliderAndTextField |
SliderOnly |
SliderTextFieldAndMaxMinButtons |
Modifier and Type | Method and Description |
---|---|
static TextSlider.SliderComposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextSlider.SliderComposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextSlider.SliderComposition SliderOnly
public static final TextSlider.SliderComposition SliderAndTextField
public static final TextSlider.SliderComposition SliderTextFieldAndMaxMinButtons
public static TextSlider.SliderComposition[] values()
for (TextSlider.SliderComposition c : TextSlider.SliderComposition.values()) System.out.println(c);
public static TextSlider.SliderComposition 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 null