Liking cljdoc? Tell your friends :D

javax.tools.JavaFileObject$Kind


*value-ofclj

(*value-of name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

name - the name of the enum constant to be returned. - java.lang.String

returns: the enum constant with the specified name - javax.tools.JavaFileObject$Kind

throws: java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type.  (Extraneous whitespace characters are
not permitted.)

name - the name of the enum constant to be returned. - `java.lang.String`

returns: the enum constant with the specified name - `javax.tools.JavaFileObject$Kind`

throws: java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
raw docstring

*valuesclj

(*values)

Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:

for (JavaFileObject.Kind c : JavaFileObject.Kind.values()) System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - javax.tools.JavaFileObject$Kind[]

Returns an array containing the constants of this enum type, in
the order they are declared.  This method may be used to iterate
over the constants as follows:


for (JavaFileObject.Kind c : JavaFileObject.Kind.values())
    System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - `javax.tools.JavaFileObject$Kind[]`
raw docstring

CLASSclj

Enum Constant.

Class files for the Java Virtual Machine. For example, regular files ending with .class.

type: javax.tools.JavaFileObject$Kind

Enum Constant.

Class files for the Java Virtual Machine.  For example,
 regular files ending with .class.

type: javax.tools.JavaFileObject$Kind
raw docstring

extensionclj

(extension this)

Instance Constant.

The extension which (by convention) is normally used for this kind of file object. If no convention exists, the empty string ("") is used.

type: java.lang.String

Instance Constant.

The extension which (by convention) is normally used for
 this kind of file object.  If no convention exists, the
 empty string ("") is used.

type: java.lang.String
raw docstring

HTMLclj

Enum Constant.

HTML files. For example, regular files ending with .html.

type: javax.tools.JavaFileObject$Kind

Enum Constant.

HTML files.  For example, regular files ending with .html.

type: javax.tools.JavaFileObject$Kind
raw docstring

OTHERclj

Enum Constant.

Any other kind.

type: javax.tools.JavaFileObject$Kind

Enum Constant.

Any other kind.

type: javax.tools.JavaFileObject$Kind
raw docstring

SOURCEclj

Enum Constant.

Source files written in the Java programming language. For example, regular files ending with .java.

type: javax.tools.JavaFileObject$Kind

Enum Constant.

Source files written in the Java programming language.  For
 example, regular files ending with .java.

type: javax.tools.JavaFileObject$Kind
raw docstring

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

× close