Enum InterfaceInstance.CachePersonalization
- java.lang.Object
-
- java.lang.Enum<InterfaceInstance.CachePersonalization>
-
- lumis.portal.structure.sync.model.page.InterfaceInstance.CachePersonalization
-
- All Implemented Interfaces:
Serializable
,Comparable<InterfaceInstance.CachePersonalization>
- Enclosing class:
- InterfaceInstance
public static enum InterfaceInstance.CachePersonalization extends Enum<InterfaceInstance.CachePersonalization>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GUEST_ONLY
INHERIT
NONE
PER_USER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InterfaceInstance.CachePersonalization
valueOf(String name)
Returns the enum constant of this type with the specified name.static InterfaceInstance.CachePersonalization[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final InterfaceInstance.CachePersonalization NONE
-
GUEST_ONLY
public static final InterfaceInstance.CachePersonalization GUEST_ONLY
-
PER_USER
public static final InterfaceInstance.CachePersonalization PER_USER
-
INHERIT
public static final InterfaceInstance.CachePersonalization INHERIT
-
-
Method Detail
-
values
public static InterfaceInstance.CachePersonalization[] 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 (InterfaceInstance.CachePersonalization c : InterfaceInstance.CachePersonalization.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterfaceInstance.CachePersonalization 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
-
-