public enum LineFeedType extends Enum<LineFeedType>
| Enum Constant and Description |
|---|
UNIX_LIKE |
WINDOWS_LIKE |
| Modifier and Type | Method and Description |
|---|---|
static LineFeedType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineFeedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineFeedType WINDOWS_LIKE
public static final LineFeedType UNIX_LIKE
public static LineFeedType[] values()
for (LineFeedType c : LineFeedType.values()) System.out.println(c);
public static LineFeedType 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 © 2016 Omnia Consulting. All rights reserved.