Liking cljdoc? Tell your friends :D

javax.lang.model.element.PackageElement

Represents a package program element. Provides access to information about the package and its members.

Represents a package program element.  Provides access to information
about the package and its members.
raw docstring

get-enclosed-elementsclj

(get-enclosed-elements this)

Returns the top-level classes and interfaces within this package. Note that subpackages are not considered to be enclosed by a package.

returns: the top-level classes and interfaces within this package - java.util.List<? extends javax.lang.model.element.Element>

Returns the top-level
 classes and interfaces within this package.  Note that
 subpackages are not considered to be enclosed by a
 package.

returns: the top-level classes and interfaces within this
 package - `java.util.List<? extends javax.lang.model.element.Element>`
raw docstring

get-enclosing-elementclj

(get-enclosing-element this)

Returns null since a package is not enclosed by another element.

returns: null - javax.lang.model.element.Element

Returns null since a package is not enclosed by another
 element.

returns: null - `javax.lang.model.element.Element`
raw docstring

get-qualified-nameclj

(get-qualified-name this)

Returns the fully qualified name of this package. This is also known as the package's canonical name.

returns: the fully qualified name of this package, or an empty name if this is an unnamed package - javax.lang.model.element.Name

Returns the fully qualified name of this package.
 This is also known as the package's canonical name.

returns: the fully qualified name of this package, or an
 empty name if this is an unnamed package - `javax.lang.model.element.Name`
raw docstring

get-simple-nameclj

(get-simple-name this)

Returns the simple name of this package. For an unnamed package, an empty name is returned.

returns: the simple name of this package or an empty name if this is an unnamed package - javax.lang.model.element.Name

Returns the simple name of this package.  For an unnamed
 package, an empty name is returned.

returns: the simple name of this package or an empty name if
 this is an unnamed package - `javax.lang.model.element.Name`
raw docstring

unnamed?clj

(unnamed? this)

Returns true is this is an unnamed package and false otherwise.

returns: true is this is an unnamed package and false otherwise - boolean

Returns true is this is an unnamed package and false otherwise.

returns: true is this is an unnamed package and false otherwise - `boolean`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close