public enum CSSDimension extends java.lang.Enum<CSSDimension>
Modifier and Type | Method and Description |
---|---|
static CSSDimension |
fromInt(int value) |
int |
intValue() |
static CSSDimension |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CSSDimension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSSDimension WIDTH
public static final CSSDimension HEIGHT
public static CSSDimension[] values()
for (CSSDimension c : CSSDimension.values()) System.out.println(c);
public static CSSDimension 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 int intValue()
public static CSSDimension fromInt(int value)