|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CaptureType>
org.easymock.CaptureType
public enum CaptureType
Defines how arguments will be captured by a Capture object
Capture
Enum Constant Summary | |
---|---|
ALL
Will capture, in order, the arguments of each matching calls |
|
FIRST
Will capture the argument of the first matching call |
|
LAST
Will capture the argument of the last matching call |
|
NONE
Do not capture anything |
Method Summary | |
---|---|
static CaptureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CaptureType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CaptureType NONE
public static final CaptureType FIRST
public static final CaptureType LAST
public static final CaptureType ALL
Method Detail |
---|
public static CaptureType[] values()
for (CaptureType c : CaptureType.values()) System.out.println(c);
public static CaptureType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |