|
Préférences
Moteurs de recherche
|
||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.lang.model.element
|
Method Summary | |
---|---|
List<? extends TypeMirror> |
getInterfaces()
Returns the interface types directly implemented by this class or extended by this interface. |
NestingKind |
getNestingKind()
Returns the nesting kind of this type element. |
Name |
getQualifiedName()
Returns the fully qualified name of this type element. |
TypeMirror |
getSuperclass()
Returns the direct superclass of this type element. |
List<? extends TypeParameterElement> |
getTypeParameters()
Returns the formal type parameters of this type element in declaration order. |
Methods inherited from interface javax.lang.model.element.Element |
---|
accept, asType, equals, getAnnotation, getAnnotationMirrors, getEnclosedElements, getEnclosingElement, getKind, getModifiers, getSimpleName, hashCode |
Method Detail |
---|
NestingKind getNestingKind()
Name getQualifiedName()
The name of a generic type does not include any reference
to its formal type parameters.
For example, the fully qualified name of the interface
java.util.Set<E>
is "java.util.Set
".
Nested types use ".
" as a separator, as in
"java.util.Map.Entry
".
Elements.getBinaryName(javax.lang.model.element.TypeElement)
TypeMirror getSuperclass()
java.lang.Object
, then a NoType
with kind NONE
is returned.
NoType
if there is noneList<? extends TypeMirror> getInterfaces()
List<? extends TypeParameterElement> getTypeParameters()