public static enum Style.WhiteSpace extends Enum<Style.WhiteSpace>
Enum Constant and Description |
---|
BreakSpaces |
Normal |
Nowrap |
Pre |
PreLine |
PreWrap |
Modifier and Type | Method and Description |
---|---|
static Style.WhiteSpace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.WhiteSpace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.WhiteSpace Normal
public static final Style.WhiteSpace Nowrap
public static final Style.WhiteSpace Pre
public static final Style.WhiteSpace PreWrap
public static final Style.WhiteSpace PreLine
public static final Style.WhiteSpace BreakSpaces
public static Style.WhiteSpace[] values()
for (Style.WhiteSpace c : Style.WhiteSpace.values()) System.out.println(c);
public static Style.WhiteSpace 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 nullRevision 4.0.15 / 20220727-0149