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