Enum Class ContentLoading

java.lang.Object
java.lang.Enum<ContentLoading>
eu.webtoolkit.jwt.ContentLoading
All Implemented Interfaces:
Serializable, Comparable<ContentLoading>, Constable

public enum ContentLoading extends Enum<ContentLoading>
Enumeration that determines when contents should be loaded.
  • Enum Constant Details

    • Lazy

      public static final ContentLoading Lazy
      Lazy loading: on first use.
    • Eager

      public static final ContentLoading Eager
      Pre-loading: before first use.
    • NextLevel

      public static final ContentLoading NextLevel
      Pre-load also next level (if applicable, e.g. for WTreeNode)
  • Method Details

    • values

      public static ContentLoading[] 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 ContentLoading 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
    • getValue

      public int getValue()
      Returns the numerical representation of this enum.