enum Markers extends Enum<Markers>
Enum Constant and Description |
---|
ALIGN_CENTER_MARKER
Constant to represent centered alignment marker
|
ALIGN_JUSTIFIED_MARKER
Constant to represent justified alignment marker
|
ALIGN_LEFT_MARKER
Constant to represent left alignment marker
|
ALIGN_LEFTNONL_MARKER
Constant to represent left alignment marker, without new line
|
ALIGN_RIGHT_MARKER
Constant to represent right alignment marker
|
GLUE_MARKER
Constant to represent "glue" marker
|
NO_JUSTIFICATION_MARKER
Constant to represent no justification markers
|
VERTICAL_SPACING_MARKER
Constant to represent vertical spacing marker
|
Modifier and Type | Method and Description |
---|---|
(package private) boolean |
check(String mark) |
static Markers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Markers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Markers ALIGN_LEFT_MARKER
public static final Markers ALIGN_LEFTNONL_MARKER
public static final Markers ALIGN_CENTER_MARKER
public static final Markers ALIGN_RIGHT_MARKER
public static final Markers ALIGN_JUSTIFIED_MARKER
public static final Markers GLUE_MARKER
public static final Markers VERTICAL_SPACING_MARKER
public static final Markers NO_JUSTIFICATION_MARKER
final String marker
public static Markers[] values()
for (Markers c : Markers.values()) System.out.println(c);
public static Markers 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 nullboolean check(String mark)