public static enum ArrowButton.ArrowIcon extends java.lang.Enum<ArrowButton.ArrowIcon>
Enum Constant and Description |
---|
DOWN
Arrow icon for down arrow button.
|
LEFT
Arrow icon for left arrow button.
|
RIGHT
Arrow icon for right arrow button.
|
UP
Arrow icon for up arrow button.
|
Modifier and Type | Method and Description |
---|---|
static ArrowButton.ArrowIcon |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrowButton.ArrowIcon[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowButton.ArrowIcon LEFT
public static final ArrowButton.ArrowIcon RIGHT
public static final ArrowButton.ArrowIcon UP
public static final ArrowButton.ArrowIcon DOWN
public static ArrowButton.ArrowIcon[] values()
for (ArrowButton.ArrowIcon c : ArrowButton.ArrowIcon.values()) System.out.println(c);
public static ArrowButton.ArrowIcon 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