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