public static enum Style.Italic extends Enum<Style.Italic>
| Modifier and Type | Method and Description |
|---|---|
static Style.Italic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.Italic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.Italic True
public static final Style.Italic False
public static final Style.Italic Inherit
public static Style.Italic[] values()
for (Style.Italic c : Style.Italic.values()) System.out.println(c);
public static Style.Italic 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 © 2014. All Rights Reserved.