Enum BeanScope

java.lang.Object
java.lang.Enum<BeanScope>
org.apache.empire.jsf2.utils.BeanScope
All Implemented Interfaces:
Serializable, Comparable<BeanScope>, java.lang.constant.Constable

public enum BeanScope extends Enum<BeanScope>
BeanScope
  • Enum Constant Details

    • Application

      public static final BeanScope Application
    • Session

      public static final BeanScope Session
    • View

      public static final BeanScope View
    • Request

      public static final BeanScope Request
  • Method Details

    • values

      public static BeanScope[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static BeanScope 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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<BeanScope>