Package org.rrd4j.graph
Enum Markers
- All Implemented Interfaces:
Serializable
,Comparable<Markers>
,java.lang.constant.Constable
enum Markers extends Enum<Markers>
-
Nested Class Summary
-
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 -
Field Summary
-
Method Summary
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 Details
-
ALIGN_LEFT_MARKER
Constant to represent left alignment marker -
ALIGN_LEFTNONL_MARKER
Constant to represent left alignment marker, without new line -
ALIGN_CENTER_MARKER
Constant to represent centered alignment marker -
ALIGN_RIGHT_MARKER
Constant to represent right alignment marker -
ALIGN_JUSTIFIED_MARKER
Constant to represent justified alignment marker -
GLUE_MARKER
Constant to represent "glue" marker -
VERTICAL_SPACING_MARKER
Constant to represent vertical spacing marker -
NO_JUSTIFICATION_MARKER
Constant to represent no justification markers
-
-
Field Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-