- All Superinterfaces:
- AnnotatedConstruct,- Element,- QualifiedNameable
public interface PackageElement extends Element, QualifiedNameable
Represents a package program element.  Provides access to information
 about the package and its members.
- Since:
- 1.6
- See Also:
- Elements.getPackageOf(javax.lang.model.element.Element)
- 
Method SummaryModifier and Type Method Description TypeMirrorasType()Returns a pseudo-type for this package.List<? extends Element>getEnclosedElements()Returns the top-level classes and interfaces within this package.ElementgetEnclosingElement()Returns the enclosing module if such a module exists; otherwise returnsnull.NamegetQualifiedName()Returns the fully qualified name of this package.NamegetSimpleName()Returns the simple name of this package.booleanisUnnamed()Returnstrueif this is an unnamed package andfalseotherwise.Methods declared in interface javax.lang.model.element.Elementaccept, equals, getAnnotation, getAnnotationMirrors, getKind, getModifiers, hashCode
- 
Method Details- 
asTypeTypeMirror asType()Returns a pseudo-type for this package.- Specified by:
- asTypein interface- Element
- Returns:
- a pseudo-type for this package
- See Also:
- NoType,- TypeKind.PACKAGE
 
- 
getQualifiedNameName getQualifiedName()Returns the fully qualified name of this package. This is also known as the package's canonical name. For an unnamed package, an empty name is returned.- Specified by:
- getQualifiedNamein interface- QualifiedNameable
- API Note:
- The fully qualified name of a named package that is
 not a subpackage of a named package is its simple name. The
 fully qualified name of a named package that is a subpackage of
 another named package consists of the fully qualified name of
 the containing package, followed by ".", followed by the simple (member) name of the subpackage.
- Returns:
- the fully qualified name of this package, or an empty name if this is an unnamed package
- See Java Language Specification:
- 
6.7 Fully Qualified Names and Canonical Names
 
- 
getSimpleNameName getSimpleName()Returns the simple name of this package. For an unnamed package, an empty name is returned.- Specified by:
- getSimpleNamein interface- Element
- Returns:
- the simple name of this package or an empty name if this is an unnamed package
- See Also:
- getSimpleName(),- ExecutableElement.getSimpleName(),- TypeElement.getSimpleName(),- VariableElement.getSimpleName(),- ModuleElement.getSimpleName(),- RecordComponentElement.getSimpleName()
 
- 
getEnclosedElementsReturns the top-level classes and interfaces within this package. Note that subpackages are not considered to be enclosed by a package.- Specified by:
- getEnclosedElementsin interface- Element
- Returns:
- the top-level classes and interfaces within this package
- See Also:
- TypeElement.getEnclosedElements(),- getEnclosedElements(),- ModuleElement.getEnclosedElements(),- Elements.getAllMembers(javax.lang.model.element.TypeElement)
 
- 
isUnnamedboolean isUnnamed()Returnstrueif this is an unnamed package andfalseotherwise.- Returns:
- trueif this is an unnamed package and- falseotherwise
- See Java Language Specification:
- 
7.4.2 Unnamed Packages
 
- 
getEnclosingElementElement getEnclosingElement()Returns the enclosing module if such a module exists; otherwise returnsnull. One situation where a module does not exist for a package is if the environment does not include modules, such as an annotation processing environment configured for a source version without modules.- Specified by:
- getEnclosingElementin interface- Element
- Returns:
- the enclosing module or nullif no such module exists
- See Also:
- Elements.getPackageOf(javax.lang.model.element.Element)
 
 
-