public static enum StandardLineBreaks.Type extends java.lang.Enum<StandardLineBreaks.Type>
| Enum Constant and Description |
|---|
DEFAULT
Indicates system default line breaks
|
DOS
Indicates windows/dos line breaks
|
MAC
Indicates classic mac line breaks
|
UNIX
Indicates unix line breaks
|
| Modifier and Type | Method and Description |
|---|---|
static StandardLineBreaks.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardLineBreaks.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardLineBreaks.Type DOS
public static final StandardLineBreaks.Type UNIX
public static final StandardLineBreaks.Type MAC
public static final StandardLineBreaks.Type DEFAULT
public static StandardLineBreaks.Type[] values()
for (StandardLineBreaks.Type c : StandardLineBreaks.Type.values()) System.out.println(c);
public static StandardLineBreaks.Type 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