public enum IconRotate extends Enum<IconRotate> implements Style
IconIcon,
Icon.setRotate(IconRotate)| Enum Constant and Description |
|---|
NONE |
ROTATE_180 |
ROTATE_270 |
ROTATE_90 |
| Modifier and Type | Method and Description |
|---|---|
String |
get()
Gets the CSS class name (or a part thereof) associated with this
constant.
|
static IconRotate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IconRotate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IconRotate NONE
public static final IconRotate ROTATE_90
public static final IconRotate ROTATE_180
public static final IconRotate ROTATE_270
public static IconRotate[] values()
for (IconRotate c : IconRotate.values()) System.out.println(c);
public static IconRotate 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 nullCopyright © 2012-2014 gwtbootstrap. All Rights Reserved.