public enum Separator extends java.lang.Enum<Separator>
FileLoader,
TableWriter| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
CHAR
The character corresponding to the
Separator. |
static java.lang.String |
COLUMN_LIST_SEPARATOR
Default value used as separator between the various columns for any
Operation that works with multiple input columns. |
static java.lang.String |
OPERATION_SEPARATOR
Default value used as separator between the various parts that make
up an
Operation. |
static java.lang.String |
OPERATION_SETTINGS_SEPARATOR
Default value used as separator between the various parts within an
Operation, usually used to avoid use of
(special characters). |
static java.lang.String |
VALUE_SEPARATOR
Default value used as separator between column values when dealing
with data files, better know as delimiter.
|
| Modifier and Type | Method and Description |
|---|---|
static Separator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Separator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Separator TAB
public static final Separator COMMA
public static final Separator SEMICOLON
public final java.lang.String CHAR
Separator.public static final java.lang.String VALUE_SEPARATOR
FileLoader,
TableWriter,
Constant Field Valuespublic static final java.lang.String OPERATION_SEPARATOR
Operation.Operation,
Constant Field Valuespublic static final java.lang.String OPERATION_SETTINGS_SEPARATOR
Operation, usually used to avoid use of
(special characters).Operation,
Constant Field Valuespublic static final java.lang.String COLUMN_LIST_SEPARATOR
Operation that works with multiple input columns.Operation,
Constant Field Valuespublic static Separator[] values()
for (Separator c : Separator.values()) System.out.println(c);
public static Separator 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