Package org.cxbox.core.config.cache
Enum CxboxCaches.Caches
- java.lang.Object
-
- java.lang.Enum<CxboxCaches.Caches>
-
- org.cxbox.core.config.cache.CxboxCaches.Caches
-
- All Implemented Interfaces:
Serializable,Comparable<CxboxCaches.Caches>
- Enclosing class:
- CxboxCaches
public static enum CxboxCaches.Caches extends Enum<CxboxCaches.Caches>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description linkedDictionaryRulesnotificationSettingsrequestCachespecificationsuserCachewidgetcacheworkflow
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CxboxCaches.CachesvalueOf(String name)Returns the enum constant of this type with the specified name.static CxboxCaches.Caches[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
linkedDictionaryRules
public static final CxboxCaches.Caches linkedDictionaryRules
-
specifications
public static final CxboxCaches.Caches specifications
-
widgetcache
public static final CxboxCaches.Caches widgetcache
-
notificationSettings
public static final CxboxCaches.Caches notificationSettings
-
workflow
public static final CxboxCaches.Caches workflow
-
requestCache
public static final CxboxCaches.Caches requestCache
-
userCache
public static final CxboxCaches.Caches userCache
-
-
Method Detail
-
values
public static CxboxCaches.Caches[] 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 (CxboxCaches.Caches c : CxboxCaches.Caches.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CxboxCaches.Caches 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
-
-