public static enum Record.Flag extends Enum<Record.Flag>
Enum Constant and Description |
---|
COMMIT |
DEFAULT |
PAUSE |
POISON_PILL |
SKIP |
TRACE |
USER1 |
USER2 |
Modifier and Type | Field and Description |
---|---|
static EnumSet<Record.Flag> |
ALL_OPTS |
Modifier and Type | Method and Description |
---|---|
static Record.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Record.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Record.Flag DEFAULT
public static final Record.Flag COMMIT
public static final Record.Flag POISON_PILL
public static final Record.Flag SKIP
public static final Record.Flag TRACE
public static final Record.Flag PAUSE
public static final Record.Flag USER1
public static final Record.Flag USER2
public static final EnumSet<Record.Flag> ALL_OPTS
public static Record.Flag[] values()
for (Record.Flag c : Record.Flag.values()) System.out.println(c);
public static Record.Flag 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 Nuxeo. All rights reserved.