public static enum CSVDesc.QuoteVariants extends Enum<CSVDesc.QuoteVariants>
| Enum Constant and Description |
|---|
Always
Всегда
|
Never
Никогда
|
Sometimes
Иногда (например числа не экранируются
|
| Modifier and Type | Method and Description |
|---|---|
static CSVDesc.QuoteVariants |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVDesc.QuoteVariants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVDesc.QuoteVariants Always
public static final CSVDesc.QuoteVariants Sometimes
public static final CSVDesc.QuoteVariants Never
public static CSVDesc.QuoteVariants[] values()
for (CSVDesc.QuoteVariants c : CSVDesc.QuoteVariants.values()) System.out.println(c);
public static CSVDesc.QuoteVariants 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 nullCopyright © 2019. All rights reserved.