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 public enum HtmlStyle {
37     aboutLanguage,
38     activeTableTab,
39     allClassesContainer,
40     allPackagesContainer,
41     altColor,
42     annotations,
43     arguments,
44     block,
45     blockList,
46     bottomNav,
47     circle,
48     classUseContainer,
49     classUses,
50     colConstructorName,
51     colDeprecatedItemName,
52     colFirst,
53     colLast,
54     colSecond,
55     constantsSummary,
56     constructorDetails,
57     constructorSummary,
58     constantDetails,
59     constantValuesContainer,
60     contentContainer,
61     deprecatedLabel,
62     deprecatedSummary,
63     deprecationBlock,
64     deprecationComment,
65     description,
66     descfrmTypeLabel,
67     details,
68     detail,
69     emphasizedPhrase,
70     exceptions,
71     externalLink,
72     fieldDetails,
73     fieldSummary,
74     flexBox,
75     flexHeader,
76     flexContent,
77     header,
78     helpSection,
79     hierarchy,
80     horizontal,
81     implementationLabel,
82     inheritance,
83     inheritedList,
84     interfaceName,
85     legalCopy,
86     memberDetails,
87     memberName,
88     memberNameLabel,
89     memberNameLink,
90     memberSignature,
91     memberSummary,
92     methodDetails,
93     methodSummary,
94     modifiers,
95     moduleDescription,
96     moduleLabelInPackage,
97     moduleLabelInType,
98     moduleTags,
99     modulesSummary,
100     nameValue,
101     navBarCell1Rev,
102     navList,
103     navListSearch,
104     navPadding,
105     nestedClassSummary,
106     overrideSpecifyLabel,
107     overviewSummary,
108     packages,
109     packageDescription,
110     packageHierarchyLabel,
111     packageLabelInType,
112     packagesSummary,
113     packageUses,
114     paramLabel,
115     propertyDetails,
116     propertySummary,
117     providesSummary,
118     requiresSummary,
119     returnLabel,
120     returnType,
121     rowColor,
122     searchTagLink,
123     searchTagResult,
124     seeLabel,
125     serializedFormContainer,
126     serializedPackageContainer,
127     serializedClassDetails,
128     servicesSummary,
129     simpleTagLabel,
130     skipNav,
131     sourceContainer,
132     sourceLineNo,
133     subNav,
134     subNavList,
135     subTitle,
136     summary,
137     systemPropertiesContainer,
138     systemPropertiesSummary,
139     tabEnd,
140     tableTab,
141     throwsLabel,
142     title,
143     topNav,
144     typeNameLabel,
145     typeNameLink,
146     typeParameters,
147     typeParametersLong,
148     typeSummary,
149     useSummary,
150     usesSummary,
151     verticalSeparator
152 }
153