|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<NewLine>
org.pfsw.text.NewLine
public enum NewLine
Provides new line character sequences for the various operating systems.
| Enum Constant Summary | |
|---|---|
CURRENT_OS
The new line characters of the current operating system. |
|
LINUX
The Linux new line character LF ("\n"). |
|
MAC
The Macintosh new line character CR ("\r"). |
|
WINDOWS
The Windows new line characters CRLF ("\r\n"). |
|
| Method Summary | |
|---|---|
java.lang.String |
asString()
|
static NewLine |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NewLine[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.pfsw.bif.enums.IEnumType |
|---|
getDeclaringClass, name, ordinal |
| Enum Constant Detail |
|---|
public static final NewLine LINUX
public static final NewLine MAC
public static final NewLine WINDOWS
public static final NewLine CURRENT_OS
| Method Detail |
|---|
public static NewLine[] values()
for (NewLine c : NewLine.values()) System.out.println(c);
public static NewLine 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 name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String asString()
asString in interface org.pfsw.bif.text.IStringRepresentation
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||