public enum BaseIconRotate extends java.lang.Enum<BaseIconRotate>
Enum Constant and Description |
---|
FLIP_HORIZONTAL |
FLIP_VERTICAL |
NORMAL |
ROTATE_180 |
ROTATE_270 |
ROTATE_90 |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toCssClass() |
static BaseIconRotate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BaseIconRotate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseIconRotate NORMAL
public static final BaseIconRotate ROTATE_90
public static final BaseIconRotate ROTATE_180
public static final BaseIconRotate ROTATE_270
public static final BaseIconRotate FLIP_HORIZONTAL
public static final BaseIconRotate FLIP_VERTICAL
public static BaseIconRotate[] values()
for (BaseIconRotate c : BaseIconRotate.values()) System.out.println(c);
public static BaseIconRotate 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 nullpublic java.lang.String toCssClass()