Liking cljdoc? Tell your friends :D

javax.tools.JavaFileObject

File abstraction for tools operating on Java™ programming language source and class files.

All methods in this interface might throw a SecurityException if a security exception occurs.

Unless explicitly allowed, all methods in this interface might throw a NullPointerException if given a null argument.

File abstraction for tools operating on Java™ programming language
source and class files.

All methods in this interface might throw a SecurityException if
a security exception occurs.

Unless explicitly allowed, all methods in this interface might
throw a NullPointerException if given a null argument.
raw docstring

get-access-levelclj

(get-access-level this)

Provides a hint about the access level of the class represented by this file object. If the access level is not known or if this file object does not represent a class file this method returns null.

returns: the access level - javax.lang.model.element.Modifier

Provides a hint about the access level of the class represented
 by this file object.  If the access level is not known or if
 this file object does not represent a class file this method
 returns null.

returns: the access level - `javax.lang.model.element.Modifier`
raw docstring

get-kindclj

(get-kind this)

Gets the kind of this file object.

returns: the kind - javax.tools.JavaFileObject$Kind

Gets the kind of this file object.

returns: the kind - `javax.tools.JavaFileObject$Kind`
raw docstring

get-nesting-kindclj

(get-nesting-kind this)

Provides a hint about the nesting level of the class represented by this file object. This method may return NestingKind.MEMBER to mean NestingKind.LOCAL or NestingKind.ANONYMOUS. If the nesting level is not known or this file object does not represent a class file this method returns null.

returns: the nesting kind, or null if the nesting kind is not known - javax.lang.model.element.NestingKind

Provides a hint about the nesting level of the class
 represented by this file object.  This method may return
 NestingKind.MEMBER to mean
 NestingKind.LOCAL or NestingKind.ANONYMOUS.
 If the nesting level is not known or this file object does not
 represent a class file this method returns null.

returns: the nesting kind, or null if the nesting kind
 is not known - `javax.lang.model.element.NestingKind`
raw docstring

name-compatible?clj

(name-compatible? this simple-name kind)

Checks if this file object is compatible with the specified simple name and kind. A simple name is a single identifier (not qualified) as defined in The Java™ Language Specification, section 6.2 "Names and Identifiers".

simple-name - a simple name of a class - java.lang.String kind - a kind - javax.tools.JavaFileObject$Kind

returns: true if this file object is compatible; false otherwise - boolean

Checks if this file object is compatible with the specified
 simple name and kind.  A simple name is a single identifier
 (not qualified) as defined in
 The Java™ Language Specification,
 section 6.2 "Names and Identifiers".

simple-name - a simple name of a class - `java.lang.String`
kind - a kind - `javax.tools.JavaFileObject$Kind`

returns: true if this file object is compatible; false
 otherwise - `boolean`
raw docstring

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

× close