public enum ObjectErrorHandling extends java.lang.Enum<ObjectErrorHandling> implements WkValue
| Enum Constant and Description |
|---|
ABORT
Aborts the conversion process.
|
IGNORE
Ignores the errors and attempts to add the object to the final output.
|
SKIP
Skips the erroneous object, adding other successful objects.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getWkValue() |
static ObjectErrorHandling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectErrorHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectErrorHandling ABORT
public static final ObjectErrorHandling SKIP
public static final ObjectErrorHandling IGNORE
public static ObjectErrorHandling[] values()
for (ObjectErrorHandling c : ObjectErrorHandling.values()) System.out.println(c);
public static ObjectErrorHandling 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 getWkValue()
getWkValue in interface WkValue