public enum InvocationOrder extends Enum<InvocationOrder>
| Enum Constant and Description |
|---|
DEFAULT
NONE or STRICT as defined by the default value in the configuration.
|
NONE
No order checking of method invocations.
|
STRICT
Strict order checking of method invocations.
|
| Modifier and Type | Method and Description |
|---|---|
static InvocationOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvocationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationOrder DEFAULT
public static final InvocationOrder NONE
public static final InvocationOrder STRICT
public static InvocationOrder[] values()
for (InvocationOrder c : InvocationOrder.values()) System.out.println(c);
public static InvocationOrder 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.