Serializable
, Comparable<MoreTextMode>
public enum MoreTextMode extends Enum<MoreTextMode>
MoreTextMode
specifies for according algorithms on how a line is
to be split or cut off.Modifier and Type | Method | Description |
---|---|---|
static MoreTextMode |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static MoreTextMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoreTextMode NONE
public static final MoreTextMode LEFT
public static final MoreTextMode CENTER
public static final MoreTextMode RIGHT
public static MoreTextMode[] values()
for (MoreTextMode c : MoreTextMode.values()) System.out.println(c);
public static MoreTextMode 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 © 2021. All rights reserved.