Package com.levigo.jadice.web.client
Enum Class PageView.TextPurgeStrategy
- All Implemented Interfaces:
Serializable
,Comparable<PageView.TextPurgeStrategy>
,Constable
- Enclosing interface:
PageView
Defines when an element should be removed from the
PageTextContent
cache.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOld PageTextContent entries are only deleted when the document is closed.Old PageTextContent entries are deleted when the page isn't visible anymore. -
Method Summary
Modifier and TypeMethodDescriptionstatic PageView.TextPurgeStrategy
Returns the enum constant of this class with the specified name.static PageView.TextPurgeStrategy[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PURGE_ON_DOC_CLOSE
Old PageTextContent entries are only deleted when the document is closed. This increases the memory usage and reduces the server requests. -
PURGE_ON_PAGE_CHANGE
Old PageTextContent entries are deleted when the page isn't visible anymore. This increases the server requests and reduces the memory usage.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-