abstract class Member extends Object
Constructor and Description |
---|
Member() |
Modifier and Type | Method and Description |
---|---|
Type |
declaringType()
Return the type in which this member was declared.
|
boolean |
isAbstract()
Has this member been declared with the abstract modifier?
|
boolean |
isFinal()
Has this member been declared with the final modifier? Note,we cannot
declare anything final as it is not in our lexicon.
|
boolean |
isPrivate()
Has this member been declared with the private modifier?
|
boolean |
isProtected()
Has this member been declared with the protected modifier?
|
boolean |
isPublic()
Has this member been declared with the public modifier?
|
boolean |
isStatic()
Has this member been declared with the static modifier?
|
protected abstract Member |
member()
Return the member's internal representation.
|
String |
name()
Return the member's (simple) name.
|
public String name()
public Type declaringType()
public boolean isStatic()
public boolean isPublic()
public boolean isProtected()
public boolean isPrivate()
public boolean isAbstract()
public boolean isFinal()
protected abstract Member member()