public static enum TraceSetting.Mode extends Enum<TraceSetting.Mode>
Enum Constant and Description |
---|
IN_ORDER
Fire in-ordered.
|
OUT_OF_ORDER
Fire out-of-ordered.
|
STRICT
Fire strictly.
|
Modifier and Type | Method and Description |
---|---|
static TraceSetting.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceSetting.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceSetting.Mode STRICT
public static final TraceSetting.Mode IN_ORDER
public static final TraceSetting.Mode OUT_OF_ORDER
public static TraceSetting.Mode[] values()
for (TraceSetting.Mode c : TraceSetting.Mode.values()) System.out.println(c);
public static TraceSetting.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 © 2011–2019 Asakusa Framework Team. All rights reserved.