Enum SectionName

  • All Implemented Interfaces:
    Serializable, Comparable<SectionName>

    @Deprecated
    public enum SectionName
    extends Enum<SectionName>
    Deprecated.
    Enum representing various section names of generated API documentation.

    This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.

    Author:
    Bhavesh Patel
    • Enum Constant Detail

      • ANNOTATION_TYPE_ELEMENT_DETAIL

        public static final SectionName ANNOTATION_TYPE_ELEMENT_DETAIL
        Deprecated.
      • ANNOTATION_TYPE_FIELD_DETAIL

        public static final SectionName ANNOTATION_TYPE_FIELD_DETAIL
        Deprecated.
      • ANNOTATION_TYPE_FIELD_SUMMARY

        public static final SectionName ANNOTATION_TYPE_FIELD_SUMMARY
        Deprecated.
      • ANNOTATION_TYPE_OPTIONAL_ELEMENT_SUMMARY

        public static final SectionName ANNOTATION_TYPE_OPTIONAL_ELEMENT_SUMMARY
        Deprecated.
      • ANNOTATION_TYPE_REQUIRED_ELEMENT_SUMMARY

        public static final SectionName ANNOTATION_TYPE_REQUIRED_ELEMENT_SUMMARY
        Deprecated.
      • CONSTRUCTOR_DETAIL

        public static final SectionName CONSTRUCTOR_DETAIL
        Deprecated.
      • CONSTRUCTOR_SUMMARY

        public static final SectionName CONSTRUCTOR_SUMMARY
        Deprecated.
      • ENUM_CONSTANT_DETAIL

        public static final SectionName ENUM_CONSTANT_DETAIL
        Deprecated.
      • ENUM_CONSTANTS_INHERITANCE

        public static final SectionName ENUM_CONSTANTS_INHERITANCE
        Deprecated.
      • ENUM_CONSTANT_SUMMARY

        public static final SectionName ENUM_CONSTANT_SUMMARY
        Deprecated.
      • FIELD_DETAIL

        public static final SectionName FIELD_DETAIL
        Deprecated.
      • FIELDS_INHERITANCE

        public static final SectionName FIELDS_INHERITANCE
        Deprecated.
      • FIELD_SUMMARY

        public static final SectionName FIELD_SUMMARY
        Deprecated.
      • METHOD_DETAIL

        public static final SectionName METHOD_DETAIL
        Deprecated.
      • METHODS_INHERITANCE

        public static final SectionName METHODS_INHERITANCE
        Deprecated.
      • METHOD_SUMMARY

        public static final SectionName METHOD_SUMMARY
        Deprecated.
      • NAVBAR_BOTTOM

        public static final SectionName NAVBAR_BOTTOM
        Deprecated.
      • NAVBAR_BOTTOM_FIRSTROW

        public static final SectionName NAVBAR_BOTTOM_FIRSTROW
        Deprecated.
      • NAVBAR_TOP

        public static final SectionName NAVBAR_TOP
        Deprecated.
      • NAVBAR_TOP_FIRSTROW

        public static final SectionName NAVBAR_TOP_FIRSTROW
        Deprecated.
      • NESTED_CLASSES_INHERITANCE

        public static final SectionName NESTED_CLASSES_INHERITANCE
        Deprecated.
      • NESTED_CLASS_SUMMARY

        public static final SectionName NESTED_CLASS_SUMMARY
        Deprecated.
      • OVERVIEW_DESCRIPTION

        public static final SectionName OVERVIEW_DESCRIPTION
        Deprecated.
      • PACKAGE_DESCRIPTION

        public static final SectionName PACKAGE_DESCRIPTION
        Deprecated.
      • PROPERTY_DETAIL

        public static final SectionName PROPERTY_DETAIL
        Deprecated.
      • PROPERTIES_INHERITANCE

        public static final SectionName PROPERTIES_INHERITANCE
        Deprecated.
      • PROPERTY_SUMMARY

        public static final SectionName PROPERTY_SUMMARY
        Deprecated.
      • SKIP_NAVBAR_BOTTOM

        public static final SectionName SKIP_NAVBAR_BOTTOM
        Deprecated.
      • SKIP_NAVBAR_TOP

        public static final SectionName SKIP_NAVBAR_TOP
        Deprecated.
      • UNNAMED_PACKAGE_ANCHOR

        public static final SectionName UNNAMED_PACKAGE_ANCHOR
        Deprecated.
    • Method Detail

      • values

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

        public static SectionName valueOf​(String name)
        Deprecated.
        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
      • getName

        public String getName()
        Deprecated.