|
Project: stp | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
ObjectEnum<CcView.TextMode>
CcView.TextMode
public static enum CcView.TextMode
Values for view text mode
Enum Constant Summary | |
---|---|
INSERT_CR
An insert_cr interop text mode. |
|
NL_TO_CR
An nl_to_cr interop text mode. |
|
STRIP_CR
A strip_cr interop text mode. |
|
TRANSPARENT
A transparent interop text mode. |
Method Summary | |
---|---|
String |
toString()
|
static CcView.TextMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CcView.TextMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CcView.TextMode INSERT_CR
NL
line
terminators to the CR NL
sequence when reading from a VOB,
and CR NL
line terminators to single NL
characters when writing to the VOB.
public static final CcView.TextMode NL_TO_CR
NL
line
terminators to CR
characters when reading from a VOB, and
CR
line terminators to single NL
characters
wehn writing to the VOB.
public static final CcView.TextMode STRIP_CR
CR NL
line
terminators to NL
when reading from a VOB, and NL
line terminators back to the CR NL
sequence when writing to the VOB.
public static final CcView.TextMode TRANSPARENT
NL
character. The view does not transform
text file line terminators in any way. This is the default text mode
if no value is set upon view creation.
Method Detail |
---|
public String toString()
toString
in class Enum<CcView.TextMode>
public static CcView.TextMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static CcView.TextMode[] values()
for (CcView.TextMode c : CcView.TextMode.values()) System.out.println(c);
|
Generated Fri 7-Aug-2015 10:46 PM | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |