Class Modifier
- java.lang.Object
-
- java.lang.reflect.Modifier
public class Modifier extends Object
The Modifier class provides static methods and constants to decode class and member access modifiers. The sets of modifiers are represented as integers with distinct bit positions representing different modifiers. The values for the constants representing the modifiers are taken from the tables in sections 4.1, 4.4, 4.5, and 4.7 of The Java™ Virtual Machine Specification.
- See Also:
-
Class.getModifiers(),Member.getModifiers()
Fields
| Modifier and Type | Field and Description |
|---|---|
static int |
ABSTRACT The |
static int |
FINAL The |
static int |
INTERFACE The |
static int |
NATIVE The |
static int |
PRIVATE The |
static int |
PROTECTED The |
static int |
PUBLIC The |
static int |
STATIC The |
static int |
STRICT The |
static int |
SYNCHRONIZED The |
static int |
TRANSIENT The |
static int |
VOLATILE The |
Constructors
| Constructor and Description |
|---|
Modifier() |
Methods
| Modifier and Type | Method and Description |
|---|---|
static int |
classModifiers() Return an |
static int |
constructorModifiers() Return an |
static int |
fieldModifiers() Return an |
static int |
interfaceModifiers() Return an |
static boolean |
isAbstract(int mod) Return |
static boolean |
isFinal(int mod) Return |
static boolean |
isInterface(int mod) Return |
static boolean |
isNative(int mod) Return |
static boolean |
isPrivate(int mod) Return |
static boolean |
isProtected(int mod) Return |
static boolean |
isPublic(int mod) Return |
static boolean |
isStatic(int mod) Return |
static boolean |
isStrict(int mod) Return |
static boolean |
isSynchronized(int mod) Return |
static boolean |
isTransient(int mod) Return |
static boolean |
isVolatile(int mod) Return |
static int |
methodModifiers() Return an |
static int |
parameterModifiers() Return an |
static String |
toString(int mod) Return a string describing the access modifier flags in the specified modifier. |
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Fields
PUBLIC
public static final int PUBLIC
The int value representing the public modifier.
- See Also:
- Constant Field Values
PRIVATE
public static final int PRIVATE
The int value representing the private modifier.
- See Also:
- Constant Field Values
PROTECTED
public static final int PROTECTED
The int value representing the protected modifier.
- See Also:
- Constant Field Values
STATIC
public static final int STATIC
The int value representing the static modifier.
- See Also:
- Constant Field Values
FINAL
public static final int FINAL
The int value representing the final modifier.
- See Also:
- Constant Field Values
SYNCHRONIZED
public static final int SYNCHRONIZED
The int value representing the synchronized modifier.
- See Also:
- Constant Field Values
VOLATILE
public static final int VOLATILE
The int value representing the volatile modifier.
- See Also:
- Constant Field Values
TRANSIENT
public static final int TRANSIENT
The int value representing the transient modifier.
- See Also:
- Constant Field Values
NATIVE
public static final int NATIVE
The int value representing the native modifier.
- See Also:
- Constant Field Values
INTERFACE
public static final int INTERFACE
The int value representing the interface modifier.
- See Also:
- Constant Field Values
ABSTRACT
public static final int ABSTRACT
The int value representing the abstract modifier.
- See Also:
- Constant Field Values
STRICT
public static final int STRICT
The int value representing the strictfp modifier.
- See Also:
- Constant Field Values
Constructors
Modifier
public Modifier()
Methods
isPublic
public static boolean isPublic(int mod)
Return true if the integer argument includes the public modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thepublicmodifier;falseotherwise.
isPrivate
public static boolean isPrivate(int mod)
Return true if the integer argument includes the private modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes theprivatemodifier;falseotherwise.
isProtected
public static boolean isProtected(int mod)
Return true if the integer argument includes the protected modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes theprotectedmodifier;falseotherwise.
isStatic
public static boolean isStatic(int mod)
Return true if the integer argument includes the static modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thestaticmodifier;falseotherwise.
isFinal
public static boolean isFinal(int mod)
Return true if the integer argument includes the final modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thefinalmodifier;falseotherwise.
isSynchronized
public static boolean isSynchronized(int mod)
Return true if the integer argument includes the synchronized modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thesynchronizedmodifier;falseotherwise.
isVolatile
public static boolean isVolatile(int mod)
Return true if the integer argument includes the volatile modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thevolatilemodifier;falseotherwise.
isTransient
public static boolean isTransient(int mod)
Return true if the integer argument includes the transient modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thetransientmodifier;falseotherwise.
isNative
public static boolean isNative(int mod)
Return true if the integer argument includes the native modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thenativemodifier;falseotherwise.
isInterface
public static boolean isInterface(int mod)
Return true if the integer argument includes the interface modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes theinterfacemodifier;falseotherwise.
isAbstract
public static boolean isAbstract(int mod)
Return true if the integer argument includes the abstract modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes theabstractmodifier;falseotherwise.
isStrict
public static boolean isStrict(int mod)
Return true if the integer argument includes the strictfp modifier, false otherwise.
- Parameters:
-
mod- a set of modifiers - Returns:
-
trueifmodincludes thestrictfpmodifier;falseotherwise.
toString
public static String toString(int mod)
Return a string describing the access modifier flags in the specified modifier. For example:
public final synchronized strictfpThe modifier names are returned in an order consistent with the suggested modifier orderings given in sections 8.1.1, 8.3.1, 8.4.3, 8.8.3, and 9.1.1 of The Java™ Language Specification. The full modifier ordering used by this method is:
public protected private abstract static final transient volatile synchronized native strictfp interfaceThe
interface modifier discussed in this class is not a true modifier in the Java language and it appears after all other modifiers listed by this method. This method may return a string of modifiers that are not valid modifiers of a Java entity; in other words, no checking is done on the possible validity of the combination of modifiers represented by the input. Note that to perform such checking for a known kind of entity, such as a constructor or method, first AND the argument of toString with the appropriate mask from a method like constructorModifiers() or methodModifiers(). - Parameters:
-
mod- a set of modifiers - Returns:
- a string representation of the set of modifiers represented by
mod
classModifiers
public static int classModifiers()
Return an int value OR-ing together the source language modifiers that can be applied to a class.
- Returns:
- an
intvalue OR-ing together the source language modifiers that can be applied to a class. - Since:
- 1.7
interfaceModifiers
public static int interfaceModifiers()
Return an int value OR-ing together the source language modifiers that can be applied to an interface.
- Returns:
- an
intvalue OR-ing together the source language modifiers that can be applied to an interface. - Since:
- 1.7
constructorModifiers
public static int constructorModifiers()
Return an int value OR-ing together the source language modifiers that can be applied to a constructor.
- Returns:
- an
intvalue OR-ing together the source language modifiers that can be applied to a constructor. - Since:
- 1.7
methodModifiers
public static int methodModifiers()
Return an int value OR-ing together the source language modifiers that can be applied to a method.
- Returns:
- an
intvalue OR-ing together the source language modifiers that can be applied to a method. - Since:
- 1.7
fieldModifiers
public static int fieldModifiers()
Return an int value OR-ing together the source language modifiers that can be applied to a field.
- Returns:
- an
intvalue OR-ing together the source language modifiers that can be applied to a field. - Since:
- 1.7
parameterModifiers
public static int parameterModifiers()
Return an int value OR-ing together the source language modifiers that can be applied to a parameter.
- Returns:
- an
intvalue OR-ing together the source language modifiers that can be applied to a parameter. - Since:
- 1.8
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Modifier.html