org.unitils.easymock.util
Enum Calls

java.lang.Object
  extended by java.lang.Enum<Calls>
      extended by org.unitils.easymock.util.Calls
All Implemented Interfaces:
Serializable, Comparable<Calls>

public enum Calls
extends Enum<Calls>

Possible values for allowing unexpected (non-recorded) method calls on mock objects. When set to lenient, a 'Nice mock' is created, as called in the EasyMock terminology. For non-void methods this means that a Java default (null, 0 or false) is returned.

Author:
Tim Ducheyne, Filip Neven

Enum Constant Summary
DEFAULT
          Defaults to the value of the org.unitils.easymock.annotation.LenientMock$Calls configuration setting.
LENIENT
          Accept unexpected method calls.
STRICT
          Throw an exception when unexpected method calls occur
 
Method Summary
static Calls valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Calls[] 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

DEFAULT

public static final Calls DEFAULT
Defaults to the value of the org.unitils.easymock.annotation.LenientMock$Calls configuration setting.


LENIENT

public static final Calls LENIENT
Accept unexpected method calls. Return default values (null, 0) for unexpected non-void method calls


STRICT

public static final Calls STRICT
Throw an exception when unexpected method calls occur

Method Detail

values

public static Calls[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Calls c : Calls.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Calls valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2011. All Rights Reserved.