public interface ModifierReviewable
| Modifier and Type | Interface and Description |
|---|---|
static class |
ModifierReviewable.AbstractBase
An abstract base implementation of a
ModifierReviewable class. |
| Modifier and Type | Field and Description |
|---|---|
static int |
EMPTY_MASK
Representation of the default modifier.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getModifiers()
Returns the modifier that is described by this object.
|
boolean |
isAbstract()
Specifies if the modifier described by this object is
abstract. |
boolean |
isAnnotation()
Specifies if the modifier described by this object represents the annotation flag.
|
boolean |
isBridge()
Specifies if the modifier described by this object represents the bridge flag.
|
boolean |
isDeprecated()
Specifies if the modifier described by this object represents the deprecated flag.
|
boolean |
isEnum()
Specifies if the modifier described by this object represents the enum flag.
|
boolean |
isFinal()
Specifies if the modifier described by this object is
final. |
boolean |
isInterface()
Specifies if the modifier described by this object represents the interface flag.
|
boolean |
isMandated()
CSpecifies if the modifier described by this object is mandated.
|
boolean |
isNative()
Specifies if the modifier described by this object is
native. |
boolean |
isPackagePrivate()
Specifies if the modifier described by this object is package private.
|
boolean |
isPrivate()
Specifies if the modifier described by this object is
private. |
boolean |
isProtected()
Specifies if the modifier described by this object is
protected. |
boolean |
isPublic()
Specifies if the modifier described by this object is
public. |
boolean |
isStatic()
Specifies if the modifier described by this object is
static. |
boolean |
isStrict()
Specifies if the modifier described by this object is
strictfp. |
boolean |
isSuper()
Specifies if the modifier described by this object reflects the type super flag.
|
boolean |
isSynchronized()
Specifies if the modifier described by this object is
synchronized. |
boolean |
isSynthetic()
Specifies if the modifier described by this object is synthetic.
|
boolean |
isTransient()
Specifies if the modifier described by this object represents the transient flag.
|
boolean |
isVarArgs()
Specifies if the modifier described by this object represents the var args flag.
|
boolean |
isVolatile()
Specifies if the modifier described by this object represents the volatile flag.
|
static final int EMPTY_MASK
boolean isFinal()
final.true if the modifier described by this object is final.boolean isStatic()
static.true if the modifier described by this object is static.boolean isPublic()
public.true if the modifier described by this object is public.boolean isProtected()
protected.true if the modifier described by this object is protected.boolean isPackagePrivate()
true if the modifier described by this object is package private.boolean isPrivate()
private.true if the modifier described by this object is private.boolean isAbstract()
abstract.true if the modifier described by this object is abstract.boolean isNative()
native.true if the modifier described by this object is native.boolean isSynchronized()
synchronized.true if the modifier described by this object is synchronized.boolean isStrict()
strictfp.true if the modifier described by this object is strictfp.boolean isSynthetic()
true if the modifier described by this object is synthetic.boolean isMandated()
true if the modifier described by this object is mandated.boolean isSuper()
true if the modifier described by this object reflects the type super flag.boolean isBridge()
true if the modifier described by this object represents the bridge flagboolean isDeprecated()
true if the modifier described by this object represents the deprecated flag.boolean isAnnotation()
true if the modifier described by this object represents the annotation flag.boolean isEnum()
true if the modifier described by this object represents the enum flag.boolean isInterface()
true if the modifier described by this object represents the interface flag.boolean isTransient()
true if the modifier described by this object represents the transient flag.boolean isVolatile()
true if the modifier described by this object represents the volatile flag.boolean isVarArgs()
true if the modifier described by this object represents the var args flag.int getModifiers()
Copyright © 2014–2015. All rights reserved.