Liking cljdoc? Tell your friends :D

jdk.lang.reflect.Member

Member is an interface that reflects identifying information about a single member (a field or a method) or a constructor.

Member is an interface that reflects identifying information about
a single member (a field or a method) or a constructor.
raw docstring

get-declaring-classclj

(get-declaring-class this)

Returns the Class object representing the class or interface that declares the member or constructor represented by this Member.

returns: an object representing the declaring class of the underlying member - java.lang.Class<?>

Returns the Class object representing the class or interface
 that declares the member or constructor represented by this Member.

returns: an object representing the declaring class of the
 underlying member - `java.lang.Class<?>`
raw docstring

get-modifiersclj

(get-modifiers this)

Returns the Java language modifiers for the member or constructor represented by this Member, as an integer. The Modifier class should be used to decode the modifiers in the integer.

returns: the Java language modifiers for the underlying member - int

Returns the Java language modifiers for the member or
 constructor represented by this Member, as an integer.  The
 Modifier class should be used to decode the modifiers in
 the integer.

returns: the Java language modifiers for the underlying member - `int`
raw docstring

get-nameclj

(get-name this)

Returns the simple name of the underlying member or constructor represented by this Member.

returns: the simple name of the underlying member - java.lang.String

Returns the simple name of the underlying member or constructor
 represented by this Member.

returns: the simple name of the underlying member - `java.lang.String`
raw docstring

synthetic?clj

(synthetic? this)

Returns true if this member was introduced by the compiler; returns false otherwise.

returns: true if and only if this member was introduced by the compiler. - boolean

Returns true if this member was introduced by
 the compiler; returns false otherwise.

returns: true if and only if this member was introduced by
 the compiler. - `boolean`
raw docstring

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

× close