Package org.rrd4j.graph
Enum Markers
- java.lang.Object
-
- java.lang.Enum<Markers>
-
- org.rrd4j.graph.Markers
-
- All Implemented Interfaces:
Serializable
,Comparable<Markers>
enum Markers extends Enum<Markers>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALIGN_CENTER_MARKER
Constant to represent centered alignment markerALIGN_JUSTIFIED_MARKER
Constant to represent justified alignment markerALIGN_LEFT_MARKER
Constant to represent left alignment markerALIGN_LEFTNONL_MARKER
Constant to represent left alignment marker, without new lineALIGN_RIGHT_MARKER
Constant to represent right alignment markerGLUE_MARKER
Constant to represent "glue" markerNO_JUSTIFICATION_MARKER
Constant to represent no justification markersVERTICAL_SPACING_MARKER
Constant to represent vertical spacing marker
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
ALIGN_LEFT_MARKER
public static final Markers ALIGN_LEFT_MARKER
Constant to represent left alignment marker
-
ALIGN_LEFTNONL_MARKER
public static final Markers ALIGN_LEFTNONL_MARKER
Constant to represent left alignment marker, without new line
-
ALIGN_CENTER_MARKER
public static final Markers ALIGN_CENTER_MARKER
Constant to represent centered alignment marker
-
ALIGN_RIGHT_MARKER
public static final Markers ALIGN_RIGHT_MARKER
Constant to represent right alignment marker
-
ALIGN_JUSTIFIED_MARKER
public static final Markers ALIGN_JUSTIFIED_MARKER
Constant to represent justified alignment marker
-
GLUE_MARKER
public static final Markers GLUE_MARKER
Constant to represent "glue" marker
-
VERTICAL_SPACING_MARKER
public static final Markers VERTICAL_SPACING_MARKER
Constant to represent vertical spacing marker
-
NO_JUSTIFICATION_MARKER
public static final Markers NO_JUSTIFICATION_MARKER
Constant to represent no justification markers
-
-
Field Detail
-
marker
final String marker
-
-
Method Detail
-
values
public static Markers[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Markers c : Markers.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Markers valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
check
boolean check(String mark)
-
-