@Deprecated public enum ExportSeparator extends Enum<ExportSeparator>
| Enum Constant and Description |
|---|
COMMA
Deprecated.
|
OTHER
Deprecated.
|
SEMICOLON
Deprecated.
|
SPACE
Deprecated.
|
TAB
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isComma()
Deprecated.
Checks if this
ExportSeparator instance is a comma. |
boolean |
isOther()
Deprecated.
Checks if this
ExportSeparator instance is a custom defined separator. |
boolean |
isSemicolon()
Deprecated.
Checks if this
ExportSeparator instance is a semicolon. |
boolean |
isSpace()
Deprecated.
Checks if this
ExportSeparator instance is a space. |
boolean |
isTab()
Deprecated.
Checks if this
ExportSeparator instance is a tab. |
static ExportSeparator |
parse(String name)
Deprecated.
Returns
ExportSeparator from the separator's name. |
String |
toString()
Deprecated.
Returns the value of this
ExportSeparator instance. |
static ExportSeparator |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ExportSeparator[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportSeparator COMMA
public static final ExportSeparator SEMICOLON
public static final ExportSeparator TAB
public static final ExportSeparator SPACE
public static final ExportSeparator OTHER
public static ExportSeparator[] values()
for (ExportSeparator c : ExportSeparator.values()) System.out.println(c);
public static ExportSeparator 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 ExportSeparator parse(String name)
ExportSeparator from the separator's name.public boolean isComma()
ExportSeparator instance is a comma.public boolean isSemicolon()
ExportSeparator instance is a semicolon.public boolean isTab()
ExportSeparator instance is a tab.public boolean isSpace()
ExportSeparator instance is a space.public boolean isOther()
ExportSeparator instance is a custom defined separator.public String toString()
ExportSeparator instance.toString in class Enum<ExportSeparator>