java.lang.reflect
public interface Member
Since: 1.1
See Also: Class Field Method Constructor
UNKNOWN: updated to 1.4
| Field Summary | |
|---|---|
| int | DECLARED
Represents all members, whether public, private, protected or
package-protected, but only which are declared in this class.
|
| int | PUBLIC
Represents public members only, but includes all inherited members.
|
| Method Summary | |
|---|---|
| Class | getDeclaringClass()
Gets the class that declared this member. |
| int | getModifiers()
Gets the modifiers this member uses. |
| String | getName()
Gets the simple name of this member. |
| boolean | isSynthetic()
Return true if this member is synthetic, meaning that it was
created by the compiler and does not appear in the user's
source code. |
See Also: SecurityManager
See Also: SecurityManager
Returns: the class that declared this member
Modifier
class to interpret the values.
Returns: an integer representing the modifiers to this Member
See Also: Modifier
Returns: the name of this member
Returns: true if the member is synthetic
Since: 1.5