public static enum CSVConversionConfig.CSVErrorHandlingMode extends java.lang.Enum<CSVConversionConfig.CSVErrorHandlingMode>
Enum Constant and Description |
---|
ABORT_ON_ERROR |
BEST_EFFORT |
OMIT_EVENT_ON_ERROR |
OMIT_TRACE_ON_ERROR |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static CSVConversionConfig.CSVErrorHandlingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CSVConversionConfig.CSVErrorHandlingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVConversionConfig.CSVErrorHandlingMode ABORT_ON_ERROR
public static final CSVConversionConfig.CSVErrorHandlingMode OMIT_TRACE_ON_ERROR
public static final CSVConversionConfig.CSVErrorHandlingMode OMIT_EVENT_ON_ERROR
public static final CSVConversionConfig.CSVErrorHandlingMode BEST_EFFORT
public static CSVConversionConfig.CSVErrorHandlingMode[] values()
for (CSVConversionConfig.CSVErrorHandlingMode c : CSVConversionConfig.CSVErrorHandlingMode.values()) System.out.println(c);
public static CSVConversionConfig.CSVErrorHandlingMode 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 java.lang.String toString()
toString
in class java.lang.Enum<CSVConversionConfig.CSVErrorHandlingMode>