1 /*
2  * Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.  Oracle designates this
8  * particular file as subject to the "Classpath" exception as provided
9  * by Oracle in the LICENSE file that accompanied this code.
10  *
11  * This code is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14  * version 2 for more details (a copy is included in the LICENSE file that
15  * accompanied this code).
16  *
17  * You should have received a copy of the GNU General Public License version
18  * 2 along with this work; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 
26 package jdk.javadoc.internal.doclets.formats.html.markup;
27 
28 /**
29  * Enum representing HTML styles. The name map to values in the CSS file.
30  *
31  *  <p><b>This is NOT part of any supported API.
32  *  If you write code that depends on this, you do so at your own risk.
33  *  This code and its internal interfaces are subject to change or
34  *  deletion without notice.</b>
35  *
36  * @author Bhavesh Patel
37  */
38 public enum HtmlStyle {
39     aboutLanguage,
40     activeTableTab,
41     allClassesContainer,
42     allPackagesContainer,
43     altColor,
44     annotations,
45     arguments,
46     bar,
47     block,
48     blockList,
49     bottomNav,
50     circle,
51     classUseContainer,
52     classUses,
53     colConstructorName,
54     colDeprecatedItemName,
55     colFirst,
56     colLast,
57     colSecond,
58     constantsSummary,
59     constructorDetails,
60     constructorSummary,
61     constantDetails,
62     constantValuesContainer,
63     contentContainer,
64     deprecatedLabel,
65     deprecatedSummary,
66     deprecationBlock,
67     deprecationComment,
68     description,
69     descfrmTypeLabel,
70     details,
71     detail,
72     docSummary,
73     emphasizedPhrase,
74     exceptions,
75     externalLink,
76     fieldDetails,
77     fieldSummary,
78     fixedNav,
79     header,
80     helpSection,
81     hierarchy,
82     horizontal,
83     footer,
84     implementationLabel,
85     indexContainer,
86     indexNav,
87     inheritance,
88     inheritedList,
89     interfaceName,
90     leftContainer,
91     leftTop,
92     leftBottom,
93     legalCopy,
94     mainContainer,
95     memberDetails,
96     memberName,
97     memberNameLabel,
98     memberNameLink,
99     memberSignature,
100     memberSummary,
101     methodDetails,
102     methodSignature,
103     methodSummary,
104     modifiers,
105     moduleDescription,
106     moduleLabelInPackage,
107     moduleLabelInType,
108     moduleTags,
109     modulesSummary,
110     nameValue,
111     navBarCell1Rev,
112     navList,
113     navListSearch,
114     navPadding,
115     nestedClassSummary,
116     overrideSpecifyLabel,
117     overviewSummary,
118     packages,
119     packageDescription,
120     packageHierarchyLabel,
121     packageLabelInType,
122     packagesSummary,
123     packageUses,
124     paramLabel,
125     propertyDetails,
126     propertySummary,
127     providesSummary,
128     requiresSummary,
129     returnLabel,
130     returnType,
131     rightContainer,
132     rightIframe,
133     rowColor,
134     searchTagLink,
135     searchTagResult,
136     seeLabel,
137     serializedFormContainer,
138     serializedPackageContainer,
139     serializedClassDetails,
140     servicesSummary,
141     simpleTagLabel,
142     skipNav,
143     sourceContainer,
144     sourceLineNo,
145     subNav,
146     subNavList,
147     subTitle,
148     summary,
149     tabEnd,
150     tableTab,
151     throwsLabel,
152     title,
153     topNav,
154     typeNameLabel,
155     typeNameLink,
156     typeParameters,
157     typeParametersLong,
158     typeSummary,
159     useSummary,
160     usesSummary
161 }
162