public enum CSVSeperator extends java.lang.Enum<CSVSeperator>
Enum Constant and Description |
---|
COMMA |
SEMICOLON |
TAB |
WHITESPACE |
Modifier and Type | Method and Description |
---|---|
char |
getSeperatorChar() |
java.lang.String |
toString() |
static CSVSeperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CSVSeperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVSeperator COMMA
public static final CSVSeperator SEMICOLON
public static final CSVSeperator TAB
public static final CSVSeperator WHITESPACE
public static CSVSeperator[] values()
for (CSVSeperator c : CSVSeperator.values()) System.out.println(c);
public static CSVSeperator 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 toString()
toString
in class java.lang.Enum<CSVSeperator>
public char getSeperatorChar()