Enum ExpirableCache.ExpirableCacheUnit
- java.lang.Object
-
- java.lang.Enum<ExpirableCache.ExpirableCacheUnit>
-
- org.owasp.csrfguard.config.overlay.ExpirableCache.ExpirableCacheUnit
-
- All Implemented Interfaces:
Serializable,Comparable<ExpirableCache.ExpirableCacheUnit>
- Enclosing class:
- ExpirableCache<K,V>
public static enum ExpirableCache.ExpirableCacheUnit extends Enum<ExpirableCache.ExpirableCacheUnit>
unit of time for expirable cache- Author:
- mchyzer
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract longdefaultTimeToLiveMillis(int input)default time to live based on unitsstatic ExpirableCache.ExpirableCacheUnitvalueOf(String name)Returns the enum constant of this type with the specified name.static ExpirableCache.ExpirableCacheUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MINUTE
public static final ExpirableCache.ExpirableCacheUnit MINUTE
minutes
-
SECOND
public static final ExpirableCache.ExpirableCacheUnit SECOND
seconds
-
-
Method Detail
-
values
public static ExpirableCache.ExpirableCacheUnit[] 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 (ExpirableCache.ExpirableCacheUnit c : ExpirableCache.ExpirableCacheUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpirableCache.ExpirableCacheUnit 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
-
defaultTimeToLiveMillis
public abstract long defaultTimeToLiveMillis(int input)
default time to live based on units- Parameters:
input- A number of units (seconds or minutes) before cache expires to be converted into milliseconds- Returns:
- the millis
-
-