public static enum CsvOptions.CsvSep extends Enum<CsvOptions.CsvSep>
Enum Constant and Description |
---|
COLON
Colon.
|
COMMA
Comma.
|
SEMICOLON
Semicolon.
|
SPACE
Space.
|
TAB
Tab.
|
Modifier and Type | Field and Description |
---|---|
char |
sep
Character.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CsvOptions.CsvSep |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvOptions.CsvSep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvOptions.CsvSep COMMA
public static final CsvOptions.CsvSep SEMICOLON
public static final CsvOptions.CsvSep COLON
public static final CsvOptions.CsvSep TAB
public static final CsvOptions.CsvSep SPACE
public static CsvOptions.CsvSep[] values()
for (CsvOptions.CsvSep c : CsvOptions.CsvSep.values()) System.out.println(c);
public static CsvOptions.CsvSep 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 String toString()
toString
in class Enum<CsvOptions.CsvSep>
Copyright © 2005–2015 BaseX Team. All rights reserved.