langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/MethodTypes.java
author bpatel
Tue, 25 Dec 2012 17:23:59 -0800
changeset 14965 bb1eb01b8c41
parent 14549 0599d73bf1da
permissions -rw-r--r--
8004893: the javadoc/doclet needs to be updated to accommodate lambda changes Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     1
/*
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     2
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     4
 *
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    10
 *
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    15
 * accompanied this code).
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    16
 *
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    20
 *
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    23
 * questions.
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    24
 */
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    25
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    26
package com.sun.tools.doclets.internal.toolkit.util;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    27
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    28
/**
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    29
 * Enum representing method types.
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    30
 *
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    31
 * @author Bhavesh Patel
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    32
 */
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    33
public enum MethodTypes {
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    34
    ALL(0xffff, "All Methods", "t0", true),
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    35
    STATIC(0x1, "Static Methods", "t1", false),
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    36
    INSTANCE(0x2, "Instance Methods", "t2", false),
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    37
    ABSTRACT(0x4, "Abstract Methods", "t3", false),
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    38
    CONCRETE(0x8, "Concrete Methods", "t4", false),
14965
bb1eb01b8c41 8004893: the javadoc/doclet needs to be updated to accommodate lambda changes
bpatel
parents: 14549
diff changeset
    39
    DEFAULT(0x10, "Default Methods", "t5", false),
bb1eb01b8c41 8004893: the javadoc/doclet needs to be updated to accommodate lambda changes
bpatel
parents: 14549
diff changeset
    40
    DEPRECATED(0x20, "Deprecated Methods", "t6", false);
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    41
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    42
    private final int value;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    43
    private final String text;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    44
    private final String tabId;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    45
    private final boolean isDefaultTab;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    46
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    47
    MethodTypes(int v, String t, String id, boolean dt) {
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    48
        this.value = v;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    49
        this.text = t;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    50
        this.tabId = id;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    51
        this.isDefaultTab = dt;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    52
    }
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    53
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    54
    public int value() {
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    55
        return value;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    56
    }
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    57
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    58
    public String text() {
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    59
        return text;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    60
    }
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    61
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    62
    public String tabId() {
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    63
        return tabId;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    64
    }
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    65
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    66
    public boolean isDefaultTab() {
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    67
        return isDefaultTab;
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    68
    }
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents:
diff changeset
    69
}