public static enum RtfHeaderFont.Pitch extends Enum<RtfHeaderFont.Pitch>
| Enum Constant and Description |
|---|
DEFAULT
Default pitch.
|
FIXED
Fixed pitch.
|
VARIABLE
Variable pitch.
|
| Modifier and Type | Method and Description |
|---|---|
static RtfHeaderFont.Pitch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtfHeaderFont.Pitch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtfHeaderFont.Pitch DEFAULT
public static final RtfHeaderFont.Pitch FIXED
public static final RtfHeaderFont.Pitch VARIABLE
public static RtfHeaderFont.Pitch[] values()
for (RtfHeaderFont.Pitch c : RtfHeaderFont.Pitch.values()) System.out.println(c);
public static RtfHeaderFont.Pitch 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 © 2010–2015 Tutego. All rights reserved.