Liking cljdoc? Tell your friends :D

javax.lang.model.element.ElementKind


*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.lang.model.element.ElementKind

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.lang.model.element.ElementKind`

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 (ElementKind c : ElementKind.values()) System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - javax.lang.model.element.ElementKind[]

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 (ElementKind c : ElementKind.values())
    System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - `javax.lang.model.element.ElementKind[]`
raw docstring

ANNOTATION_TYPEclj

Enum Constant.

An annotation type.

type: javax.lang.model.element.ElementKind

Enum Constant.

An annotation type.

type: javax.lang.model.element.ElementKind
raw docstring

CLASSclj

Enum Constant.

A class not described by a more specific kind (like ENUM).

type: javax.lang.model.element.ElementKind

Enum Constant.

A class not described by a more specific kind (like ENUM).

type: javax.lang.model.element.ElementKind
raw docstring

class?clj

(class? this)

Returns true if this is a kind of class: either CLASS or ENUM.

returns: true if this is a kind of class - boolean

Returns true if this is a kind of class:
 either CLASS or ENUM.

returns: true if this is a kind of class - `boolean`
raw docstring

CONSTRUCTORclj

Enum Constant.

A constructor.

type: javax.lang.model.element.ElementKind

Enum Constant.

A constructor.

type: javax.lang.model.element.ElementKind
raw docstring

ENUMclj

Enum Constant.

An enum type.

type: javax.lang.model.element.ElementKind

Enum Constant.

An enum type.

type: javax.lang.model.element.ElementKind
raw docstring

ENUM_CONSTANTclj

Enum Constant.

An enum constant.

type: javax.lang.model.element.ElementKind

Enum Constant.

An enum constant.

type: javax.lang.model.element.ElementKind
raw docstring

EXCEPTION_PARAMETERclj

Enum Constant.

A parameter of an exception handler.

type: javax.lang.model.element.ElementKind

Enum Constant.

A parameter of an exception handler.

type: javax.lang.model.element.ElementKind
raw docstring

FIELDclj

Enum Constant.

A field not described by a more specific kind (like ENUM_CONSTANT).

type: javax.lang.model.element.ElementKind

Enum Constant.

A field not described by a more specific kind (like
 ENUM_CONSTANT).

type: javax.lang.model.element.ElementKind
raw docstring

field?clj

(field? this)

Returns true if this is a kind of field: either FIELD or ENUM_CONSTANT.

returns: true if this is a kind of field - boolean

Returns true if this is a kind of field:
 either FIELD or ENUM_CONSTANT.

returns: true if this is a kind of field - `boolean`
raw docstring

INSTANCE_INITclj

Enum Constant.

An instance initializer.

type: javax.lang.model.element.ElementKind

Enum Constant.

An instance initializer.

type: javax.lang.model.element.ElementKind
raw docstring

INTERFACEclj

Enum Constant.

An interface not described by a more specific kind (like ANNOTATION_TYPE).

type: javax.lang.model.element.ElementKind

Enum Constant.

An interface not described by a more specific kind (like
 ANNOTATION_TYPE).

type: javax.lang.model.element.ElementKind
raw docstring

interface?clj

(interface? this)

Returns true if this is a kind of interface: either INTERFACE or ANNOTATION_TYPE.

returns: true if this is a kind of interface - boolean

Returns true if this is a kind of interface:
 either INTERFACE or ANNOTATION_TYPE.

returns: true if this is a kind of interface - `boolean`
raw docstring

LOCAL_VARIABLEclj

Enum Constant.

A local variable.

type: javax.lang.model.element.ElementKind

Enum Constant.

A local variable.

type: javax.lang.model.element.ElementKind
raw docstring

METHODclj

Enum Constant.

A method.

type: javax.lang.model.element.ElementKind

Enum Constant.

A method.

type: javax.lang.model.element.ElementKind
raw docstring

OTHERclj

Enum Constant.

An implementation-reserved element. This is not the element you are looking for.

type: javax.lang.model.element.ElementKind

Enum Constant.

An implementation-reserved element.  This is not the element
 you are looking for.

type: javax.lang.model.element.ElementKind
raw docstring

PACKAGEclj

Enum Constant.

A package.

type: javax.lang.model.element.ElementKind

Enum Constant.

A package.

type: javax.lang.model.element.ElementKind
raw docstring

PARAMETERclj

Enum Constant.

A parameter of a method or constructor.

type: javax.lang.model.element.ElementKind

Enum Constant.

A parameter of a method or constructor.

type: javax.lang.model.element.ElementKind
raw docstring

RESOURCE_VARIABLEclj

Enum Constant.

A resource variable.

type: javax.lang.model.element.ElementKind

Enum Constant.

A resource variable.

type: javax.lang.model.element.ElementKind
raw docstring

STATIC_INITclj

Enum Constant.

A static initializer.

type: javax.lang.model.element.ElementKind

Enum Constant.

A static initializer.

type: javax.lang.model.element.ElementKind
raw docstring

TYPE_PARAMETERclj

Enum Constant.

A type parameter.

type: javax.lang.model.element.ElementKind

Enum Constant.

A type parameter.

type: javax.lang.model.element.ElementKind
raw docstring

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

× close