public static enum CcView.TextMode extends Enum<CcView.TextMode> implements com.ibm.rational.wvcm.stpex.StpExEnumeration
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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.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 nameNullPointerException
- if the argument is nullpublic static CcView.TextMode[] values()
for (CcView.TextMode c : CcView.TextMode.values()) System.out.println(c);
Copyright © IBM 2018. All rights reserved.