Enum HtmlStyle

  • All Implemented Interfaces:
    Serializable, Comparable<HtmlStyle>

    @Deprecated
    public enum HtmlStyle
    extends Enum<HtmlStyle>
    Deprecated.
    Enum representing HTML styles. The name map to values in the CSS file.

    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

      • aboutLanguage

        public static final HtmlStyle aboutLanguage
        Deprecated.
      • activeTableTab

        public static final HtmlStyle activeTableTab
        Deprecated.
      • altColor

        public static final HtmlStyle altColor
        Deprecated.
      • bar

        public static final HtmlStyle bar
        Deprecated.
      • block

        public static final HtmlStyle block
        Deprecated.
      • blockList

        public static final HtmlStyle blockList
        Deprecated.
      • blockListLast

        public static final HtmlStyle blockListLast
        Deprecated.
      • bottomNav

        public static final HtmlStyle bottomNav
        Deprecated.
      • circle

        public static final HtmlStyle circle
        Deprecated.
      • classUseContainer

        public static final HtmlStyle classUseContainer
        Deprecated.
      • colFirst

        public static final HtmlStyle colFirst
        Deprecated.
      • colLast

        public static final HtmlStyle colLast
        Deprecated.
      • colOne

        public static final HtmlStyle colOne
        Deprecated.
      • constantsSummary

        public static final HtmlStyle constantsSummary
        Deprecated.
      • constantValuesContainer

        public static final HtmlStyle constantValuesContainer
        Deprecated.
      • contentContainer

        public static final HtmlStyle contentContainer
        Deprecated.
      • deprecatedContent

        public static final HtmlStyle deprecatedContent
        Deprecated.
      • deprecatedLabel

        public static final HtmlStyle deprecatedLabel
        Deprecated.
      • deprecatedSummary

        public static final HtmlStyle deprecatedSummary
        Deprecated.
      • deprecationComment

        public static final HtmlStyle deprecationComment
        Deprecated.
      • description

        public static final HtmlStyle description
        Deprecated.
      • descfrmTypeLabel

        public static final HtmlStyle descfrmTypeLabel
        Deprecated.
      • details

        public static final HtmlStyle details
        Deprecated.
      • docSummary

        public static final HtmlStyle docSummary
        Deprecated.
      • emphasizedPhrase

        public static final HtmlStyle emphasizedPhrase
        Deprecated.
      • fixedNav

        public static final HtmlStyle fixedNav
        Deprecated.
      • header

        public static final HtmlStyle header
        Deprecated.
      • horizontal

        public static final HtmlStyle horizontal
        Deprecated.
      • footer

        public static final HtmlStyle footer
        Deprecated.
      • indexContainer

        public static final HtmlStyle indexContainer
        Deprecated.
      • indexNav

        public static final HtmlStyle indexNav
        Deprecated.
      • inheritance

        public static final HtmlStyle inheritance
        Deprecated.
      • interfaceName

        public static final HtmlStyle interfaceName
        Deprecated.
      • leftContainer

        public static final HtmlStyle leftContainer
        Deprecated.
      • leftTop

        public static final HtmlStyle leftTop
        Deprecated.
      • leftBottom

        public static final HtmlStyle leftBottom
        Deprecated.
      • legalCopy

        public static final HtmlStyle legalCopy
        Deprecated.
      • mainContainer

        public static final HtmlStyle mainContainer
        Deprecated.
      • memberNameLabel

        public static final HtmlStyle memberNameLabel
        Deprecated.
      • memberNameLink

        public static final HtmlStyle memberNameLink
        Deprecated.
      • memberSummary

        public static final HtmlStyle memberSummary
        Deprecated.
      • nameValue

        public static final HtmlStyle nameValue
        Deprecated.
      • navBarCell1Rev

        public static final HtmlStyle navBarCell1Rev
        Deprecated.
      • navList

        public static final HtmlStyle navList
        Deprecated.
      • navListSearch

        public static final HtmlStyle navListSearch
        Deprecated.
      • navPadding

        public static final HtmlStyle navPadding
        Deprecated.
      • overrideSpecifyLabel

        public static final HtmlStyle overrideSpecifyLabel
        Deprecated.
      • overviewSummary

        public static final HtmlStyle overviewSummary
        Deprecated.
      • packageHierarchyLabel

        public static final HtmlStyle packageHierarchyLabel
        Deprecated.
      • packageLabelInClass

        public static final HtmlStyle packageLabelInClass
        Deprecated.
      • paramLabel

        public static final HtmlStyle paramLabel
        Deprecated.
      • returnLabel

        public static final HtmlStyle returnLabel
        Deprecated.
      • rightContainer

        public static final HtmlStyle rightContainer
        Deprecated.
      • rightIframe

        public static final HtmlStyle rightIframe
        Deprecated.
      • rowColor

        public static final HtmlStyle rowColor
        Deprecated.
      • searchTagLink

        public static final HtmlStyle searchTagLink
        Deprecated.
      • seeLabel

        public static final HtmlStyle seeLabel
        Deprecated.
      • serializedFormContainer

        public static final HtmlStyle serializedFormContainer
        Deprecated.
      • simpleTagLabel

        public static final HtmlStyle simpleTagLabel
        Deprecated.
      • skipNav

        public static final HtmlStyle skipNav
        Deprecated.
      • sourceContainer

        public static final HtmlStyle sourceContainer
        Deprecated.
      • sourceLineNo

        public static final HtmlStyle sourceLineNo
        Deprecated.
      • subNav

        public static final HtmlStyle subNav
        Deprecated.
      • subNavList

        public static final HtmlStyle subNavList
        Deprecated.
      • subTitle

        public static final HtmlStyle subTitle
        Deprecated.
      • summary

        public static final HtmlStyle summary
        Deprecated.
      • tabEnd

        public static final HtmlStyle tabEnd
        Deprecated.
      • tableTab

        public static final HtmlStyle tableTab
        Deprecated.
      • throwsLabel

        public static final HtmlStyle throwsLabel
        Deprecated.
      • title

        public static final HtmlStyle title
        Deprecated.
      • topNav

        public static final HtmlStyle topNav
        Deprecated.
      • typeNameLabel

        public static final HtmlStyle typeNameLabel
        Deprecated.
      • typeNameLink

        public static final HtmlStyle typeNameLink
        Deprecated.
      • typeSummary

        public static final HtmlStyle typeSummary
        Deprecated.
      • useSummary

        public static final HtmlStyle useSummary
        Deprecated.
    • Method Detail

      • values

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

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