BreakTypepublic enum BreakType extends Enum<BreakType>
| Enum Constant and Description |
|---|
COLUMN
Deprecated.
|
LINE
Deprecated.
|
NONE
Deprecated.
|
PAGE
Deprecated.
|
PARAGRAPH
Deprecated.
|
TAB
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static BreakType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static BreakType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BreakType NONE
public static final BreakType PAGE
public static final BreakType PARAGRAPH
public static final BreakType LINE
public static final BreakType TAB
public static final BreakType COLUMN
public static BreakType[] values()
for (BreakType c : BreakType.values()) System.out.println(c);
public static BreakType 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 null