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