@Override public abstract
List<? extends
Element>
getEnclosedElements ()
@Override public abstract
Element getEnclosingElement ()
@Override public abstract
Name getQualifiedName ()
Implementing: javax.lang.model.element.QualifiedNameable
Returns the fully qualified name of this module. For an
unnamed module, an empty name is returned.
Returns: the fully qualified name of this module, or an
empty name if this is an unnamed module
@apiNote If the module name consists of one identifier, then
this method returns that identifier, which is deemed to be
module's fully qualified name despite not being in qualified
form. If the module name consists of more than one identifier,
then this method returns the entire name.
@jls 6.2 Names and Identifiers
@Override public abstract
Name getSimpleName ()
Implementing: javax.lang.model.element.Element
Returns the simple name of this module. For an unnamed module, an empty name is returned.
Returns: the simple name of this module or an empty name if
this is an unnamed module
@apiNote If the module name consists of one identifier, then
this method returns that identifier. If the module name
consists of more than one identifier, then this method returns
the rightmost such identifier, which is deemed to be the
module's simple name.
@jls 6.2 Names and Identifiers