API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.lang.reflect. Member View Source
Author(s)
Nakul Saraiya
Since
Version
Serial
Hierarchy
 Member
Subinterfaces
Description
public interface Member
  Member is an interface that reflects identifying information about a single member (a field or a method) or a constructor.
See also:    Class Field Method Constructor
Methods
Hide/Show inherited methods
public Class<Object> getDeclaringClass ()
  Returns the Class object representing the class or interface that declares the member or constructor represented by this Member.
public int getModifiers ()
  Returns the Java language modifiers for the member or constructor represented by this Member, as an integer.
public String getName ()
  Returns the simple name of the underlying member or constructor represented by this Member.
public boolean isSynthetic ()
  Returns true if this member was introduced by the compiler; returns false otherwise.
Fields
Hide/Show inherited fields
publicfinalstatic int DECLARED = "1"
  Identifies the set of declared members of a class or interface.
publicfinalstatic int PUBLIC = "0"
  Identifies the set of all public members of a class or interface, including inherited members.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar