1/*
2 * Copyright (c) 2010, 2017, 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
26package 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 */
38public enum HtmlStyle {
39    aboutLanguage,
40    activeTableTab,
41    altColor,
42    bar,
43    block,
44    blockList,
45    blockListLast,
46    bottomNav,
47    circle,
48    classUseContainer,
49    colConstructorName,
50    colFirst,
51    colLast,
52    colSecond,
53    constantsSummary,
54    constantValuesContainer,
55    contentContainer,
56    deprecatedContent,
57    deprecatedLabel,
58    deprecatedSummary,
59    deprecationComment,
60    description,
61    descfrmTypeLabel,
62    details,
63    docSummary,
64    emphasizedPhrase,
65    fixedNav,
66    header,
67    horizontal,
68    footer,
69    implementationLabel,
70    indexContainer,
71    indexNav,
72    inheritance,
73    interfaceName,
74    leftContainer,
75    leftTop,
76    leftBottom,
77    legalCopy,
78    mainContainer,
79    memberNameLabel,
80    memberNameLink,
81    memberSummary,
82    moduleLabelInPackage,
83    moduleLabelInType,
84    nameValue,
85    navBarCell1Rev,
86    navList,
87    navListSearch,
88    navPadding,
89    overrideSpecifyLabel,
90    overviewSummary,
91    packageHierarchyLabel,
92    packageLabelInType,
93    packagesSummary,
94    paramLabel,
95    providesSummary,
96    requiresSummary,
97    returnLabel,
98    rightContainer,
99    rightIframe,
100    rowColor,
101    searchTagLink,
102    searchTagResult,
103    seeLabel,
104    serializedFormContainer,
105    simpleTagLabel,
106    skipNav,
107    sourceContainer,
108    sourceLineNo,
109    subNav,
110    subNavList,
111    subTitle,
112    summary,
113    tabEnd,
114    tableTab,
115    throwsLabel,
116    title,
117    topNav,
118    typeNameLabel,
119    typeNameLink,
120    typeSummary,
121    useSummary,
122    usesSummary
123}
124