public enum ChangeLogInsertMode extends Enum<ChangeLogInsertMode>
| Enum Constant and Description |
|---|
DEFAULT
Use the default behaviour as defined on ServerConfig.
|
EXCLUDE
Exclude inserts in the change log.
|
INCLUDE
Include inserts in the change log.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangeLogInsertMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeLogInsertMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeLogInsertMode DEFAULT
public static final ChangeLogInsertMode INCLUDE
public static final ChangeLogInsertMode EXCLUDE
public static ChangeLogInsertMode[] values()
for (ChangeLogInsertMode c : ChangeLogInsertMode.values()) System.out.println(c);
public static ChangeLogInsertMode 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 © 2019. All rights reserved.