public interface MetaMember
Common values of a class member -- a field, property, method, or constructor.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public int |
getModifiers()Returns the Java modifier bit set for this meta member. |
|
public String |
getName()Returns the simple name of this meta member. |
|
public boolean |
isFinal()Indicates whether this member is declared final. |
|
public boolean |
isPackagePrivate()Indicates whether this member has package visibility. |
|
public boolean |
isPrivate()Indicates whether this member is declared private. |
|
public boolean |
isProtected()Indicates whether this member is declared protected. |
|
public boolean |
isPublic()Indicates whether this member is declared public. |
|
public boolean |
isStatic()Indicates whether this member is declared static. |
|
public boolean |
isSynthetic()Indicates whether this member is synthetic from the JVM's perspective. |
Returns the Java modifier bit set for this meta member.
Returns the simple name of this meta member.
Indicates whether this member is declared final.
true if the final modifier is presentIndicates whether this member has package visibility.
true if no explicit access modifier is present Indicates whether this member is declared private.
true if the private modifier is present Indicates whether this member is declared protected.
true if the protected modifier is present Indicates whether this member is declared public.
true if the public modifier is present Indicates whether this member is declared static.
true if the static modifier is presentIndicates whether this member is synthetic from the JVM's perspective.
true if the synthetic modifier bit is present