@Deprecated public enum Answers extends Enum<Answers>
Enum Constant and Description |
---|
CALLS_REAL_METHODS
Deprecated.
|
RETURNS_DEEP_STUBS
Deprecated.
|
RETURNS_DEFAULTS
Deprecated.
|
RETURNS_MOCKS
Deprecated.
|
RETURNS_SMART_NULLS
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Answer<Object> |
get()
Deprecated.
|
static Answers |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Answers[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Answers RETURNS_DEFAULTS
public static final Answers RETURNS_SMART_NULLS
public static final Answers RETURNS_MOCKS
public static final Answers RETURNS_DEEP_STUBS
public static final Answers CALLS_REAL_METHODS
public static Answers[] values()
for (Answers c : Answers.values()) System.out.println(c);
public static Answers 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 © 2018. All rights reserved.