public static enum RowBatchFailureListener.BatchFailureDisposition extends java.lang.Enum<RowBatchFailureListener.BatchFailureDisposition>
Enum Constant and Description |
---|
RETRY
Attempt to retrieve the batch rows again.
|
SKIP
Ignore the exception and try to get another
batch of rows without retrieving the current batch of rows.
|
STOP
Stop the job, retrieving no more rows.
|
Modifier and Type | Method and Description |
---|---|
static RowBatchFailureListener.BatchFailureDisposition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the
specified name.
|
static RowBatchFailureListener.BatchFailureDisposition[] |
values()
Returns an array containing the constants of
this enum type, in the order they are declared.
|
public static final RowBatchFailureListener.BatchFailureDisposition RETRY
public static final RowBatchFailureListener.BatchFailureDisposition SKIP
public static final RowBatchFailureListener.BatchFailureDisposition STOP
public static RowBatchFailureListener.BatchFailureDisposition[] values()
for (RowBatchFailureListener.BatchFailureDisposition c : RowBatchFailureListener.BatchFailureDisposition.values()) System.out.println(c);
public static RowBatchFailureListener.BatchFailureDisposition 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 © 2024 MarkLogic Corporation. All Rights Reserved.