Enum JavaEEResourceType

    • Enum Constant Detail

      • DSDPOOL

        public static final JavaEEResourceType DSDPOOL
        DSDPOOL: DataSourceDefinitionDescriptor Pool
      • CFD

        public static final JavaEEResourceType CFD
        CFD: ConnectionFactoryDefinitionDescriptor
      • CFDPOOL

        public static final JavaEEResourceType CFDPOOL
        CFDPOOL: ConnectionFactoryDefinitionDescriptor Pool
      • JMSCFDD

        public static final JavaEEResourceType JMSCFDD
        JMSCFDD: JMSConnectionFactoryDefinitionDescriptor
      • JMSCFDDPOOL

        public static final JavaEEResourceType JMSCFDDPOOL
        JMSCFDDPOOL: JMSConnectionFactoryDefinitionDescriptor Pool
      • JMSDD

        public static final JavaEEResourceType JMSDD
        JMSDD: JMSDestinationDefinitionDescriptor
      • AODD

        public static final JavaEEResourceType AODD
        AODD: AdministeredObjectDefinitionDescriptor
      • MEDD

        public static final JavaEEResourceType MEDD
        MEDD: ManagedExecutorDefinitionDescriptor
      • MTFDD

        public static final JavaEEResourceType MTFDD
        MTFDD: ManagedThreadFactoryDefinitionDescriptor
      • MSEDD

        public static final JavaEEResourceType MSEDD
        MSEDD: ManagedScheduledExecutorDefinitionDescriptor
      • CSDD

        public static final JavaEEResourceType CSDD
        CSDD: ContextServiceDefinitionDescriptor
    • Method Detail

      • values

        public static JavaEEResourceType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (JavaEEResourceType c : JavaEEResourceType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static JavaEEResourceType 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