Enum Type

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Type>

    public enum Type
    extends java.lang.Enum<Type>
    • Enum Constant Detail

      • ACCESS

        public static final Type ACCESS
      • BUNDLE

        public static final Type BUNDLE
      • API

        public static final Type API
      • MANIFEST

        public static final Type MANIFEST
      • ATTRIBUTE

        public static final Type ATTRIBUTE
      • DIRECTIVE

        public static final Type DIRECTIVE
      • REQUIREMENT

        public static final Type REQUIREMENT
      • REQUIREMENTS

        public static final Type REQUIREMENTS
      • CAPABILITY

        public static final Type CAPABILITY
      • CAPABILITIES

        public static final Type CAPABILITIES
      • REPOSITORY

        public static final Type REPOSITORY
      • RESOURCE_ID

        public static final Type RESOURCE_ID
      • FILTER

        public static final Type FILTER
      • EXPRESSION

        public static final Type EXPRESSION
      • PACKAGE

        public static final Type PACKAGE
      • CLASS

        public static final Type CLASS
      • INTERFACE

        public static final Type INTERFACE
      • ANNOTATION

        public static final Type ANNOTATION
      • ENUM

        public static final Type ENUM
      • EXTENDS

        public static final Type EXTENDS
      • IMPLEMENTS

        public static final Type IMPLEMENTS
      • FIELD

        public static final Type FIELD
      • METHOD

        public static final Type METHOD
      • ANNOTATED

        public static final Type ANNOTATED
      • PROPERTY

        public static final Type PROPERTY
      • RESOURCE

        public static final Type RESOURCE
      • SHA

        public static final Type SHA
      • CUSTOM

        public static final Type CUSTOM
      • CLAUSE

        public static final Type CLAUSE
      • HEADER

        public static final Type HEADER
      • PARAMETER

        public static final Type PARAMETER
      • CLASS_VERSION

        public static final Type CLASS_VERSION
      • RESOURCES

        public static final Type RESOURCES
      • CONSTANT

        public static final Type CONSTANT
      • DEFAULT

        public static final Type DEFAULT
      • RETURN

        public static final Type RETURN
      • VERSION

        public static final Type VERSION
      • DEPRECATED

        public static final Type DEPRECATED
      • REPO

        public static final Type REPO
      • PROGRAM

        public static final Type PROGRAM
      • REVISION

        public static final Type REVISION
    • Method Detail

      • values

        public static Type[] 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 (Type c : Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Type valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • isInherited

        public boolean isInherited()