-
- 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
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/lang/reflect/Member.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.