jdk/src/share/classes/java/lang/reflect/Modifier.java
author darcy
Tue, 02 Apr 2013 16:26:54 -0700
changeset 16729 3b26e313ad81
parent 15655 d9ab4d9ee4f2
child 16743 b0b34102bb4c
permissions -rw-r--r--
8004979: java.lang.reflect.Modifier.toString should include "default" Reviewed-by: mduigou
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
15294
df55735ea03c 8004729: Add java.lang.reflect.Parameter and related changes for parameter reflection
robm
parents: 14342
diff changeset
     2
 * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3712
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3712
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3712
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3712
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3712
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang.reflect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import sun.reflect.LangReflectAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import sun.reflect.ReflectionFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * The Modifier class provides {@code static} methods and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * constants to decode class and member access modifiers.  The sets of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * modifiers are represented as integers with distinct bit positions
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * representing different modifiers.  The values for the constants
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
    37
 * representing the modifiers are taken from the tables in sections 4.1, 4.4, 4.5, and 4.7 of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
    38
 * <cite>The Java&trade; Virtual Machine Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * @see Class#getModifiers()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @see Member#getModifiers()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @author Nakul Saraiya
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @author Kenneth Russell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
class Modifier {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * Bootstrapping protocol between java.lang and java.lang.reflect
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     *  packages
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        sun.reflect.ReflectionFactory factory =
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
    55
            AccessController.doPrivileged(
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
    56
                new ReflectionFactory.GetReflectionFactoryAction());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        factory.setLangReflectAccess(new java.lang.reflect.ReflectAccess());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * {@code public} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * {@code public} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    public static boolean isPublic(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        return (mod & PUBLIC) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * {@code private} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * {@code private} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    public static boolean isPrivate(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        return (mod & PRIVATE) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * {@code protected} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * {@code protected} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    public static boolean isProtected(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        return (mod & PROTECTED) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * {@code static} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * {@code static} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public static boolean isStatic(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return (mod & STATIC) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * {@code final} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * {@code final} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    public static boolean isFinal(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        return (mod & FINAL) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * {@code synchronized} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * {@code synchronized} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    public static boolean isSynchronized(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        return (mod & SYNCHRONIZED) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * {@code volatile} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * {@code volatile} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    public static boolean isVolatile(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        return (mod & VOLATILE) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * {@code transient} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * {@code transient} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    public static boolean isTransient(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        return (mod & TRANSIENT) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * {@code native} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * {@code native} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    public static boolean isNative(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        return (mod & NATIVE) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * {@code interface} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * {@code interface} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    public static boolean isInterface(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        return (mod & INTERFACE) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * {@code abstract} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * {@code abstract} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    public static boolean isAbstract(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        return (mod & ABSTRACT) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * Return {@code true} if the integer argument includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * {@code strictfp} modifier, {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @return {@code true} if {@code mod} includes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * {@code strictfp} modifier; {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    public static boolean isStrict(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        return (mod & STRICT) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * Return a string describing the access modifier flags in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * the specified modifier. For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *    public final synchronized strictfp
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * The modifier names are returned in an order consistent with the
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   211
     * suggested modifier orderings given in sections 8.1.1, 8.3.1, 8.4.3, 8.8.3, and 9.1.1 of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   212
     * <cite>The Java&trade; Language Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * The full modifier ordering used by this method is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * <blockquote> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * public protected private abstract static final transient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * volatile synchronized native strictfp
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * interface } </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * The {@code interface} modifier discussed in this class is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * not a true modifier in the Java language and it appears after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * all other modifiers listed by this method.  This method may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * return a string of modifiers that are not valid modifiers of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * Java entity; in other words, no checking is done on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * possible validity of the combination of modifiers represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * by the input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   226
     * Note that to perform such checking for a known kind of entity,
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   227
     * such as a constructor or method, first AND the argument of
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   228
     * {@code toString} with the appropriate mask from a method like
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   229
     * {@link #constructorModifiers} or {@link #methodModifiers}.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   230
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @param   mod a set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @return  a string representation of the set of modifiers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * represented by {@code mod}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    public static String toString(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        StringBuffer sb = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        int len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        if ((mod & PUBLIC) != 0)        sb.append("public ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        if ((mod & PROTECTED) != 0)     sb.append("protected ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        if ((mod & PRIVATE) != 0)       sb.append("private ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        /* Canonical order */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        if ((mod & ABSTRACT) != 0)      sb.append("abstract ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        if ((mod & STATIC) != 0)        sb.append("static ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        if ((mod & FINAL) != 0)         sb.append("final ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        if ((mod & TRANSIENT) != 0)     sb.append("transient ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        if ((mod & VOLATILE) != 0)      sb.append("volatile ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        if ((mod & SYNCHRONIZED) != 0)  sb.append("synchronized ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        if ((mod & NATIVE) != 0)        sb.append("native ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        if ((mod & STRICT) != 0)        sb.append("strictfp ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        if ((mod & INTERFACE) != 0)     sb.append("interface ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        if ((len = sb.length()) > 0)    /* trim trailing space */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            return sb.toString().substring(0, len-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    /*
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   260
     * Access modifier flag constants from tables 4.1, 4.4, 4.5, and 4.7 of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   261
     * <cite>The Java&trade; Virtual Machine Specification</cite>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * The {@code int} value representing the {@code public}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    public static final int PUBLIC           = 0x00000001;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * The {@code int} value representing the {@code private}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    public static final int PRIVATE          = 0x00000002;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * The {@code int} value representing the {@code protected}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    public static final int PROTECTED        = 0x00000004;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * The {@code int} value representing the {@code static}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    public static final int STATIC           = 0x00000008;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * The {@code int} value representing the {@code final}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    public static final int FINAL            = 0x00000010;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * The {@code int} value representing the {@code synchronized}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    public static final int SYNCHRONIZED     = 0x00000020;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * The {@code int} value representing the {@code volatile}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    public static final int VOLATILE         = 0x00000040;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * The {@code int} value representing the {@code transient}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    public static final int TRANSIENT        = 0x00000080;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * The {@code int} value representing the {@code native}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    public static final int NATIVE           = 0x00000100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * The {@code int} value representing the {@code interface}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    public static final int INTERFACE        = 0x00000200;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * The {@code int} value representing the {@code abstract}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    public static final int ABSTRACT         = 0x00000400;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * The {@code int} value representing the {@code strictfp}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    public static final int STRICT           = 0x00000800;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    // Bits not (yet) exposed in the public API either because they
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    // have different meanings for fields and methods and there is no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    // way to distinguish between the two in this class, or because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    // they are not Java programming language keywords
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    static final int BRIDGE    = 0x00000040;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    static final int VARARGS   = 0x00000080;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    static final int SYNTHETIC = 0x00001000;
15294
df55735ea03c 8004729: Add java.lang.reflect.Parameter and related changes for parameter reflection
robm
parents: 14342
diff changeset
   343
    static final int ANNOTATION  = 0x00002000;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    static final int ENUM      = 0x00004000;
15655
d9ab4d9ee4f2 8007405: Update java.lang.reflect API to replace SYNTHESIZED with MANDATED
alanb
parents: 15294
diff changeset
   345
    static final int MANDATED  = 0x00008000;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    static boolean isSynthetic(int mod) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
      return (mod & SYNTHETIC) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    }
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   349
15655
d9ab4d9ee4f2 8007405: Update java.lang.reflect API to replace SYNTHESIZED with MANDATED
alanb
parents: 15294
diff changeset
   350
    static boolean isMandated(int mod) {
d9ab4d9ee4f2 8007405: Update java.lang.reflect API to replace SYNTHESIZED with MANDATED
alanb
parents: 15294
diff changeset
   351
      return (mod & MANDATED) != 0;
15294
df55735ea03c 8004729: Add java.lang.reflect.Parameter and related changes for parameter reflection
robm
parents: 14342
diff changeset
   352
    }
df55735ea03c 8004729: Add java.lang.reflect.Parameter and related changes for parameter reflection
robm
parents: 14342
diff changeset
   353
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   354
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   355
     * See JLSv3 section 8.1.1.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   356
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   357
    private static final int CLASS_MODIFIERS =
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   358
        Modifier.PUBLIC         | Modifier.PROTECTED    | Modifier.PRIVATE |
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   359
        Modifier.ABSTRACT       | Modifier.STATIC       | Modifier.FINAL   |
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   360
        Modifier.STRICT;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   361
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   362
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   363
     * See JLSv3 section 9.1.1.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   364
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   365
    private static final int INTERFACE_MODIFIERS =
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   366
        Modifier.PUBLIC         | Modifier.PROTECTED    | Modifier.PRIVATE |
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   367
        Modifier.ABSTRACT       | Modifier.STATIC       | Modifier.STRICT;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   368
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   369
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   370
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   371
     * See JLSv3 section 8.8.3.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   372
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   373
    private static final int CONSTRUCTOR_MODIFIERS =
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   374
        Modifier.PUBLIC         | Modifier.PROTECTED    | Modifier.PRIVATE;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   375
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   376
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   377
     * See JLSv3 section 8.4.3.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   378
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   379
    private static final int METHOD_MODIFIERS =
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   380
        Modifier.PUBLIC         | Modifier.PROTECTED    | Modifier.PRIVATE |
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   381
        Modifier.ABSTRACT       | Modifier.STATIC       | Modifier.FINAL   |
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   382
        Modifier.SYNCHRONIZED   | Modifier.NATIVE       | Modifier.STRICT;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   383
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   384
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   385
     * See JLSv3 section 8.3.1.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   386
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   387
    private static final int FIELD_MODIFIERS =
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   388
        Modifier.PUBLIC         | Modifier.PROTECTED    | Modifier.PRIVATE |
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   389
        Modifier.STATIC         | Modifier.FINAL        | Modifier.TRANSIENT |
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   390
        Modifier.VOLATILE;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   391
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   392
    /**
16729
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 15655
diff changeset
   393
     *
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 15655
diff changeset
   394
     */
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 15655
diff changeset
   395
    static final int ACCESS_MODIFIERS =
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 15655
diff changeset
   396
        Modifier.PUBLIC         | Modifier.PROTECTED    | Modifier.PRIVATE;
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 15655
diff changeset
   397
3b26e313ad81 8004979: java.lang.reflect.Modifier.toString should include "default"
darcy
parents: 15655
diff changeset
   398
    /**
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   399
     * Return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   400
     * modifiers that can be applied to a class.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   401
     * @return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   402
     * modifiers that can be applied to a class.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   403
     *
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   404
     * @jls 8.1.1 Class Modifiers
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   405
     * @since 1.7
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   406
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   407
    public static int classModifiers() {
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   408
        return CLASS_MODIFIERS;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   409
    }
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   410
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   411
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   412
     * Return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   413
     * modifiers that can be applied to an interface.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   414
     * @return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   415
     * modifiers that can be applied to an inteface.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   416
     *
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   417
     * @jls 9.1.1 Interface Modifiers
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   418
     * @since 1.7
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   419
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   420
    public static int interfaceModifiers() {
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   421
        return INTERFACE_MODIFIERS;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   422
    }
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   423
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   424
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   425
     * Return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   426
     * modifiers that can be applied to a constructor.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   427
     * @return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   428
     * modifiers that can be applied to a constructor.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   429
     *
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   430
     * @jls 8.8.3 Constructor Modifiers
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   431
     * @since 1.7
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   432
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   433
    public static int constructorModifiers() {
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   434
        return CONSTRUCTOR_MODIFIERS;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   435
    }
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   436
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   437
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   438
     * Return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   439
     * modifiers that can be applied to a method.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   440
     * @return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   441
     * modifiers that can be applied to a method.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   442
     *
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   443
     * @jls 8.4.3 Method Modifiers
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   444
     * @since 1.7
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   445
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   446
    public static int methodModifiers() {
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   447
        return METHOD_MODIFIERS;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   448
    }
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   449
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   450
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   451
    /**
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   452
     * Return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   453
     * modifiers that can be applied to a field.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   454
     * @return an {@code int} value OR-ing together the source language
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   455
     * modifiers that can be applied to a field.
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   456
     *
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   457
     * @jls 8.3.1 Field Modifiers
3712
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   458
     * @since 1.7
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   459
     */
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   460
    public static int fieldModifiers() {
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   461
        return FIELD_MODIFIERS;
8851d55adef0 6261502: (reflect) Add the functionality to screen out the "inappropriate" modifier bits
darcy
parents: 715
diff changeset
   462
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
}