public enum LineEnding extends java.lang.Enum<LineEnding>
Enum Constant and Description |
---|
BUTT |
CIRCLE |
CLOSED_ARROW |
CLOSED_ARROW_TAIL |
DIAMOND |
NONE |
OPEN_ARROW |
OPEN_ARROW_TAIL |
SLASH |
SQUARE |
Modifier and Type | Method and Description |
---|---|
static LineEnding |
fromValue(int value) |
int |
getValue() |
static LineEnding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineEnding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineEnding NONE
public static final LineEnding OPEN_ARROW
public static final LineEnding CLOSED_ARROW
public static final LineEnding SQUARE
public static final LineEnding CIRCLE
public static final LineEnding DIAMOND
public static final LineEnding BUTT
public static final LineEnding OPEN_ARROW_TAIL
public static final LineEnding CLOSED_ARROW_TAIL
public static final LineEnding SLASH
public static LineEnding[] values()
for (LineEnding c : LineEnding.values()) System.out.println(c);
public static LineEnding valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static LineEnding fromValue(int value)
public int getValue()