public enum ConversionTarget extends java.lang.Enum<ConversionTarget>
DocumentConversion
Enum Constant and Description |
---|
ANSWER_UNITS
The answer units.
|
NORMALIZED_HTML
The normalized html.
|
NORMALIZED_TEXT
The normalized text.
|
Modifier and Type | Method and Description |
---|---|
static ConversionTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConversionTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversionTarget ANSWER_UNITS
public static final ConversionTarget NORMALIZED_HTML
public static final ConversionTarget NORMALIZED_TEXT
public static ConversionTarget[] values()
for (ConversionTarget c : ConversionTarget.values()) System.out.println(c);
public static ConversionTarget 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 namejava.lang.NullPointerException
- if the argument is null