public interface Member extends ProgramModelElement
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
isFinal()
Checks if this member is final. 
 | 
boolean | 
isPrivate()
Checks if this member is private. 
 | 
boolean | 
isProtected()
Checks if this member is protected. 
 | 
boolean | 
isPublic()
Checks if this member is public. 
 | 
boolean | 
isStatic()
Checks if this member is static. 
 | 
boolean | 
isStrictFp()
Checks if this member is strictfp. 
 | 
getFullNamegetNameboolean isFinal()
true if this member is final,
       false otherwise.boolean isStatic()
true
       for Constructors.true if this member is static,
       false otherwise.boolean isPrivate()
true if this member is private,
       false otherwise.boolean isProtected()
true if this member is protected,
       false otherwise.boolean isPublic()
true if this member is public,
       false otherwise.boolean isStrictFp()
true if this member is strictfp,
       false otherwise.