public static enum CsvGenerator.Format extends java.lang.Enum<CsvGenerator.Format>
| Modifier and Type | Method and Description |
|---|---|
static CsvGenerator.Format |
parse(java.lang.String name) |
static CsvGenerator.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CsvGenerator.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvGenerator.Format LONG
public static final CsvGenerator.Format WIDE
public static CsvGenerator.Format[] values()
for (CsvGenerator.Format c : CsvGenerator.Format.values()) System.out.println(c);
public static CsvGenerator.Format 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 static CsvGenerator.Format parse(java.lang.String name)