public enum OutputFormat extends java.lang.Enum<OutputFormat>
| Enum Constant and Description |
|---|
COMPACT_NAME_TERM_VALUE |
CUSTOMIZED |
NAME_TERM_VALUE |
QUINCE_FDS |
RAW_DATA |
TENSOR |
| Modifier and Type | Method and Description |
|---|---|
static OutputFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormat NAME_TERM_VALUE
public static final OutputFormat COMPACT_NAME_TERM_VALUE
public static final OutputFormat RAW_DATA
public static final OutputFormat TENSOR
public static final OutputFormat CUSTOMIZED
public static final OutputFormat QUINCE_FDS
public static OutputFormat[] values()
for (OutputFormat c : OutputFormat.values()) System.out.println(c);
public static OutputFormat 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