public enum LengthUnit extends Enum<LengthUnit>
| Enum Constant and Description |
|---|
CENTIMETER |
INCH |
MILLIMETER |
PERCENTAGE |
PIXELS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LengthUnit |
valueOf(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 CENTIMETER
public static final LengthUnit MILLIMETER
public static final LengthUnit INCH
public static final LengthUnit PIXELS
public static final LengthUnit PERCENTAGE
public static LengthUnit[] values()
for (LengthUnit c : LengthUnit.values()) System.out.println(c);
public static LengthUnit 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 nullpublic String toString()
toString in class Enum<LengthUnit>Copyright © 2007–2017. All rights reserved.