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