Package org.teiid.translator
Enum CacheDirective.Invalidation
- java.lang.Object
-
- java.lang.Enum<CacheDirective.Invalidation>
-
- org.teiid.translator.CacheDirective.Invalidation
-
- All Implemented Interfaces:
Serializable
,Comparable<CacheDirective.Invalidation>
- Enclosing class:
- CacheDirective
public static enum CacheDirective.Invalidation extends Enum<CacheDirective.Invalidation>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CacheDirective.Invalidation
valueOf(String name)
Returns the enum constant of this type with the specified name.static CacheDirective.Invalidation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CacheDirective.Invalidation NONE
No invalidation - the default
-
LAZY
public static final CacheDirective.Invalidation LAZY
Invalidate after new results have been obtained
-
IMMEDIATE
public static final CacheDirective.Invalidation IMMEDIATE
Invalidate immediately
-
-
Method Detail
-
values
public static CacheDirective.Invalidation[] 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 (CacheDirective.Invalidation c : CacheDirective.Invalidation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheDirective.Invalidation 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
-
-