public static enum Stream.EolStyle extends java.lang.Enum<Stream.EolStyle>
Modifier and Type | Method and Description |
---|---|
static Stream.EolStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Stream.EolStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stream.EolStyle RAW
public static final Stream.EolStyle CR
public static final Stream.EolStyle CRLF
public static final Stream.EolStyle LF
public static Stream.EolStyle[] values()
for (Stream.EolStyle c : Stream.EolStyle.values()) System.out.println(c);
public static Stream.EolStyle 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