-
- All Known Implementing Classes:
- Constructor, Field, Method
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
-
-
Field Summary
Fields Modifier and Type Field and Description static int
DECLARED
Identifies the set of declared members of a class or interface.static int
PUBLIC
Identifies the set of all public members of a class or interface, including inherited members.
-
Method Summary
Methods Modifier and Type Method and Description Class<?>
getDeclaringClass()
Returns the Class object representing the class or interface that declares the member or constructor represented by this Member.int
getModifiers()
Returns the Java language modifiers for the member or constructor represented by this Member, as an integer.String
getName()
Returns the simple name of the underlying member or constructor represented by this Member.boolean
isSynthetic()
Returnstrue
if this member was introduced by the compiler; returnsfalse
otherwise.
-
-
-
Field Detail
-
PUBLIC
static final int PUBLIC
Identifies the set of all public members of a class or interface, including inherited members.
-
DECLARED
static final int DECLARED
Identifies the set of declared members of a class or interface. Inherited members are not included.
-
-
Method Detail
-
getDeclaringClass
Class<?> getDeclaringClass()
Returns the Class object representing the class or interface that declares the member or constructor represented by this Member.- Returns:
- an object representing the declaring class of the underlying member
-
getName
String getName()
Returns the simple name of the underlying member or constructor represented by this Member.- Returns:
- the simple name of the underlying member
-
getModifiers
int getModifiers()
Returns the Java language modifiers for the member or constructor represented by this Member, as an integer. The Modifier class should be used to decode the modifiers in the integer.- Returns:
- the Java language modifiers for the underlying member
- See Also:
Modifier
-
isSynthetic
boolean isSynthetic()
Returnstrue
if this member was introduced by the compiler; returnsfalse
otherwise.- Returns:
- true if and only if this member was introduced by the compiler.
- Since:
- 1.5
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 20:30:51 Cette version de la page est en cache (à la date du 05/11/2024 20:30:51) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/lang/reflect/Member.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.