public static enum CSVFormat.Quote extends java.lang.Enum<CSVFormat.Quote>
| Enum Constant and Description | 
|---|
| ALWAYSEach content element is quoted. | 
| NEVERContent is never quoted. | 
| SPECIAL_CHARACTERSOnly content elements are quoted containing special characters. | 
| Modifier and Type | Method and Description | 
|---|---|
| static CSVFormat.Quote | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static CSVFormat.Quote[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CSVFormat.Quote ALWAYS
public static final CSVFormat.Quote SPECIAL_CHARACTERS
Special characters consist of:
,: The comma;: The semi colon": The double quote': The apostrophe\: The backslash\t: The tab character\n: The line feed character\r: The carriage return characterpublic static final CSVFormat.Quote NEVER
public static CSVFormat.Quote[] values()
for (CSVFormat.Quote c : CSVFormat.Quote.values()) System.out.println(c);
public static CSVFormat.Quote 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 nullCopyright © 2018. All Rights Reserved.