public enum SuppressAtLineBreak extends java.lang.Enum<SuppressAtLineBreak>
Enum Constant and Description |
---|
AUTO
The character U+0020 (space) is treated as if "suppress" had been
specified, all other characters are treated as if "retain" has been
specified.
|
RETAIN
The character shall be placed in the area tree whether or not it is
first or last in a line-area.
|
SUPPRESS
The character is eligible to be suppressed at the start or end of a
line-area depending on the white-space-treatment property.
|
Modifier and Type | Method and Description |
---|---|
static SuppressAtLineBreak |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SuppressAtLineBreak[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuppressAtLineBreak AUTO
public static final SuppressAtLineBreak SUPPRESS
public static final SuppressAtLineBreak RETAIN
public static SuppressAtLineBreak[] values()
for (SuppressAtLineBreak c : SuppressAtLineBreak.values()) System.out.println(c);
public static SuppressAtLineBreak 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 nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.