Enum Class PageView.RepaintMode

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

public static enum PageView.RepaintMode extends Enum<PageView.RepaintMode>
Indicates what should be done while repainting.
  • Enum Constant Details

    • DEFAULT

      public static final PageView.RepaintMode DEFAULT
      Do normal repainting.
    • ZOOM

      public static final PageView.RepaintMode ZOOM
      Indicates to skip the update of Tiles and only do fast zoom. This mode should only used temporary and used when highPerformance needed.
  • Method Details

    • values

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