public enum OutputFormatType extends java.lang.Enum<OutputFormatType>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSeparator() |
boolean |
isTable() |
static OutputFormatType |
parse(java.lang.String text) |
static OutputFormatType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormatType TSV
public static final OutputFormatType CSV
public static final OutputFormatType TABLE
public static OutputFormatType[] values()
for (OutputFormatType c : OutputFormatType.values()) System.out.println(c);
public static OutputFormatType 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 nullpublic java.lang.String getSeparator()
public boolean isTable()
public static OutputFormatType parse(java.lang.String text)