public enum WalProcessingOption extends Enum<WalProcessingOption>
| Enum Constant and Description |
|---|
CONTINUE_PROCESSING
Continue processing as usual.
|
CORRUPTED_RECORD
Corrupted record detected by filter.
|
IGNORE_CURRENT_RECORD
Ignore the current record but continue processing of log(s).
|
STOP_REPLAY
Stop replay of logs and discard logs.
|
| Modifier and Type | Method and Description |
|---|---|
static WalProcessingOption |
fromValue(byte value) |
static WalProcessingOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WalProcessingOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalProcessingOption CONTINUE_PROCESSING
public static final WalProcessingOption IGNORE_CURRENT_RECORD
public static final WalProcessingOption STOP_REPLAY
public static final WalProcessingOption CORRUPTED_RECORD
public static WalProcessingOption[] values()
for (WalProcessingOption c : WalProcessingOption.values()) System.out.println(c);
public static WalProcessingOption 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 nullpublic static WalProcessingOption fromValue(byte value)
Copyright © 2022. All rights reserved.