public enum LineEndingStyle extends java.lang.Enum<LineEndingStyle>
| Enum Constant and Description |
|---|
BUTT |
CIRCLE |
CLOSED_ARROW |
DIAMOND |
NONE |
OPEN_ARROW |
REVERSE_CLOSED_ARROW |
REVERSE_OPEN_ARROW |
SLASH |
SQUARE |
| Modifier and Type | Method and Description |
|---|---|
static LineEndingStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineEndingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineEndingStyle SQUARE
public static final LineEndingStyle CIRCLE
public static final LineEndingStyle DIAMOND
public static final LineEndingStyle OPEN_ARROW
public static final LineEndingStyle CLOSED_ARROW
public static final LineEndingStyle BUTT
public static final LineEndingStyle REVERSE_OPEN_ARROW
public static final LineEndingStyle REVERSE_CLOSED_ARROW
public static final LineEndingStyle SLASH
public static final LineEndingStyle NONE
public static LineEndingStyle[] values()
for (LineEndingStyle c : LineEndingStyle.values()) System.out.println(c);
public static LineEndingStyle 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 null