Java java.lang.reflect Parameter fields, constructors, methods, implement or subclass

Example usage for Java java.lang.reflect Parameter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.lang.reflect Parameter.

The text is from its open source code.

Field

Stringname

Method

booleanequals(Object obj)
Compares based on the executable and the index.
TgetAnnotation(Class annotationClass)
Annotation[]getAnnotations()
ClassgetClass()
Returns the runtime class of this Object .
TgetDeclaredAnnotation(Class annotationClass)
ExecutablegetDeclaringExecutable()
Return the Executable which declares this parameter.
StringgetName()
Returns the name of the parameter.
TypegetParameterizedType()
Returns a Type object that identifies the parameterized type for the parameter represented by this Parameter object.
ClassgetType()
Returns a Class object that identifies the declared type for the parameter represented by this Parameter object.
booleanisAnnotationPresent(Class annotationClass)
Returns true if an annotation for the specified type is present on this element, else false.
booleanisNamePresent()
Returns true if the parameter has a name according to the class file; returns false otherwise.
StringtoString()
Returns a string describing this parameter.