| java.lang.Object | |
| ↳ | java.lang.reflect.Modifier | 
This class provides static methods to decode class and member modifiers.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| int | ABSTRACT | The intvalue representing theabstractmodifier. | |||||||||
| int | FINAL | The intvalue representing thefinalmodifier. | |||||||||
| int | INTERFACE | The intvalue representing theinterfacemodifier. | |||||||||
| int | NATIVE | The intvalue representing thenativemodifier. | |||||||||
| int | PRIVATE | The intvalue representing theprivatemodifier. | |||||||||
| int | PROTECTED | The intvalue representing theprotectedmodifier. | |||||||||
| int | PUBLIC | The intvalue representing thepublicmodifier. | |||||||||
| int | STATIC | The intvalue representing thestaticmodifier. | |||||||||
| int | STRICT | The intvalue representing thestrictmodifier. | |||||||||
| int | SYNCHRONIZED | The intvalue representing thesynchronizedmodifier. | |||||||||
| int | TRANSIENT | The intvalue representing thetransientmodifier. | |||||||||
| int | VOLATILE | The intvalue representing thevolatilemodifier. | |||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Constructs a new 
            Modifierinstance. | ||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Indicates whether or not the specified modifiers contain the 
            abstractmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            finalmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            interfacemodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            nativemodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            privatemodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            protectedmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            publicmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            staticmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            strictmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            synchronizedmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            transientmodifier. | ||||||||||
|  | 
           Indicates whether or not the specified modifiers contain the 
            volatilemodifier. | ||||||||||
|  | 
           Returns a string containing the string representation of all modifiers present in the specified modifiers.
           | ||||||||||
| [Expand] 
           Inherited Methods
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class java.lang.Object | |||||||||||
The int value representing the abstract modifier. 
The int value representing the final modifier. 
The int value representing the interface modifier. 
The int value representing the native modifier. 
The int value representing the private modifier. 
The int value representing the protected modifier. 
The int value representing the public modifier. 
The int value representing the static modifier. 
The int value representing the strict modifier. 
The int value representing the synchronized modifier. 
The int value representing the transient modifier. 
The int value representing the volatile modifier. 
Indicates whether or not the specified modifiers contain the abstract modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the abstract modifier, false otherwise Indicates whether or not the specified modifiers contain the final modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the final modifier, false otherwise Indicates whether or not the specified modifiers contain the interface modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the interface modifier, false otherwise Indicates whether or not the specified modifiers contain the native modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the native modifier, false otherwise Indicates whether or not the specified modifiers contain the private modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the private modifier, false otherwise Indicates whether or not the specified modifiers contain the protected modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the protected modifier, false otherwise Indicates whether or not the specified modifiers contain the public modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the public modifier, false otherwise Indicates whether or not the specified modifiers contain the static modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the static modifier, false otherwise Indicates whether or not the specified modifiers contain the strict modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the strict modifier, false otherwise Indicates whether or not the specified modifiers contain the synchronized modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the synchronized modifier, false otherwise Indicates whether or not the specified modifiers contain the transient modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the transient modifier, false otherwise Indicates whether or not the specified modifiers contain the volatile modifier.
| modifiers | the modifiers to test | 
|---|
true if the specified modifiers contain the volatile modifier, false otherwise Returns a string containing the string representation of all modifiers present in the specified modifiers. Modifiers appear in the order specified by the Java Language Specification: public private protected abstract static final transient volatile native synchronized interface strict
| modifiers | the modifiers to print | 
|---|