Enum SessionBeanType

java.lang.Object
java.lang.Enum<SessionBeanType>
javax.enterprise.inject.spi.SessionBeanType
All Implemented Interfaces:
Serializable, Comparable<SessionBeanType>, java.lang.constant.Constable

public enum SessionBeanType extends Enum<SessionBeanType>
Identifies the kind of Jakarta Enterprise Bean session bean.
Author:
Gavin King
  • Enum Constant Details

    • STATELESS

      public static final SessionBeanType STATELESS
      A
      invalid reference
      stateless
      session bean
    • STATEFUL

      public static final SessionBeanType STATEFUL
      A
      invalid reference
      stateful
      session bean
    • SINGLETON

      public static final SessionBeanType SINGLETON
      A
      invalid reference
      singleton
      session bean
  • Method Details

    • values

      public static SessionBeanType[] 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 SessionBeanType 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