public enum LineBreak extends Enum<LineBreak> implements IMarkVal
| Modifier and Type | Method and Description |
|---|---|
static LineBreak |
of(String val) |
String |
val() |
static LineBreak |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineBreak[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineBreak LF
public static final LineBreak CR
public static final LineBreak CRLF
public static LineBreak[] values()
for (LineBreak c : LineBreak.values()) System.out.println(c);
public static LineBreak 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 nullCopyright © 2019. All rights reserved.