Enum HibernateL2CAssertionResult.CacheAction
- java.lang.Object
-
- java.lang.Enum<HibernateL2CAssertionResult.CacheAction>
-
- com.mickaelb.integration.spring.assertions.l2c.HibernateL2CAssertionResult.CacheAction
-
- All Implemented Interfaces:
Serializable,Comparable<HibernateL2CAssertionResult.CacheAction>
- Enclosing class:
- HibernateL2CAssertionResult
public static enum HibernateL2CAssertionResult.CacheAction extends Enum<HibernateL2CAssertionResult.CacheAction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HibernateL2CAssertionResult.CacheActionvalueOf(String name)Returns the enum constant of this type with the specified name.static HibernateL2CAssertionResult.CacheAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIT
public static final HibernateL2CAssertionResult.CacheAction HIT
-
MISS
public static final HibernateL2CAssertionResult.CacheAction MISS
-
PUT
public static final HibernateL2CAssertionResult.CacheAction PUT
-
-
Method Detail
-
values
public static HibernateL2CAssertionResult.CacheAction[] 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 (HibernateL2CAssertionResult.CacheAction c : HibernateL2CAssertionResult.CacheAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HibernateL2CAssertionResult.CacheAction 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 nameNullPointerException- if the argument is null
-
-