public enum UnitType extends Enum<UnitType>
Enum Constant and Description |
---|
ABSOLUTE
Absolute.
|
RELATIVE
Relative.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Returns a string representing the object.
|
static UnitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnitType ABSOLUTE
public static final UnitType RELATIVE
public static UnitType[] values()
for (UnitType c : UnitType.values()) System.out.println(c);
public static UnitType 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 © 2001–2017 JFree.org. All rights reserved.