public static enum ReplicationMessage.Operation extends Enum<ReplicationMessage.Operation>
| Enum Constant and Description |
|---|
BEGIN |
COMMIT |
DELETE |
INSERT |
NOOP |
TRUNCATE |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ReplicationMessage.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationMessage.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationMessage.Operation INSERT
public static final ReplicationMessage.Operation UPDATE
public static final ReplicationMessage.Operation DELETE
public static final ReplicationMessage.Operation TRUNCATE
public static final ReplicationMessage.Operation BEGIN
public static final ReplicationMessage.Operation COMMIT
public static final ReplicationMessage.Operation NOOP
public static ReplicationMessage.Operation[] values()
for (ReplicationMessage.Operation c : ReplicationMessage.Operation.values()) System.out.println(c);
public static ReplicationMessage.Operation 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 © 2021 JBoss by Red Hat. All rights reserved.