public static enum CSVWriter.ValuePolicy extends Enum<CSVWriter.ValuePolicy> implements CSVWriter.IValuePolicy
| Enum Constant and Description |
|---|
EMPTY_STRING
Writes an unquoted blank value.
|
QUOTED_EMPTY_STRING
Writes a quoted blank value using the CSVWriter's starting and ending quote properties.
|
| Modifier and Type | Method and Description |
|---|---|
static CSVWriter.ValuePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVWriter.ValuePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetStringpublic static final CSVWriter.ValuePolicy EMPTY_STRING
public static final CSVWriter.ValuePolicy QUOTED_EMPTY_STRING
public static CSVWriter.ValuePolicy[] values()
for (CSVWriter.ValuePolicy c : CSVWriter.ValuePolicy.values()) System.out.println(c);
public static CSVWriter.ValuePolicy 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 (c) 2006-2025 North Concepts Inc. All Rights Reserved.