public enum CsvType extends Enum<CsvType>
Enum Constant and Description |
---|
COMMA_DELIMITED
Comma delimited CSV (most frequently used).
|
SEMICOLON_DELIMITED
Semicolon delimited CSV (used by Excel if current culture specifies comma as decimal separator).
|
TAB_DELIMITED
Tab delimited CSV.
|
Modifier and Type | Method and Description |
---|---|
static CsvType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvType COMMA_DELIMITED
public static final CsvType SEMICOLON_DELIMITED
public static final CsvType TAB_DELIMITED
public static CsvType 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 CsvType[] values()
for (CsvType c : CsvType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.