public enum Defaults extends Enum<Defaults>
| Enum Constant and Description |
|---|
DEFAULT
Defaults to the value of the org.unitils.easymock.annotation.LenientMock$Defaults configuration setting.
|
IGNORE_DEFAULTS
All arguments that have default values as expected values will not be checked.
|
STRICT
Arguments with default values will also be checked.
|
| Modifier and Type | Method and Description |
|---|---|
static Defaults |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Defaults[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Defaults DEFAULT
public static final Defaults IGNORE_DEFAULTS
public static final Defaults STRICT
public static Defaults[] values()
for (Defaults c : Defaults.values()) System.out.println(c);
public static Defaults 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 © 2017. All rights reserved.