public static enum Configuration.RECORDING_MODE extends Enum<Configuration.RECORDING_MODE>
| Enum Constant and Description |
|---|
DUMP_CALLS |
OVERWRITE |
| Modifier and Type | Method and Description |
|---|---|
static Configuration.RECORDING_MODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.RECORDING_MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.RECORDING_MODE DUMP_CALLS
public static final Configuration.RECORDING_MODE OVERWRITE
public static Configuration.RECORDING_MODE[] values()
for (Configuration.RECORDING_MODE c : Configuration.RECORDING_MODE.values()) System.out.println(c);
public static Configuration.RECORDING_MODE 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 © 2016. All rights reserved.