Enum Class PageView.TextPurgeStrategy

java.lang.Object
java.lang.Enum<PageView.TextPurgeStrategy>
com.levigo.jadice.web.client.PageView.TextPurgeStrategy
All Implemented Interfaces:
Serializable, Comparable<PageView.TextPurgeStrategy>, Constable
Enclosing interface:
PageView

public static enum PageView.TextPurgeStrategy extends Enum<PageView.TextPurgeStrategy>
Defines when an element should be removed from the PageTextContent cache.
  • Enum Constant Details

    • PURGE_ON_DOC_CLOSE

      public static final PageView.TextPurgeStrategy 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

      public static final PageView.TextPurgeStrategy 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

      public static PageView.TextPurgeStrategy[] 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

      public static PageView.TextPurgeStrategy valueOf(String name)
      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 name
      NullPointerException - if the argument is null