Package org.kohsuke.stapler.lang
Class FieldRef
java.lang.Object
org.kohsuke.stapler.lang.AnnotatedRef
org.kohsuke.stapler.lang.FieldRef
- Direct Known Subclasses:
FieldRefFilter
Fields of
Klass.- Author:
- Kohsuke Kawaguchi
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract ObjectObtains the value of the field of the instance.abstract StringgetName()Name of the method.abstract StringGets a fully qualified name of this field that includes the declaring type.abstract Class<?>abstract StringGets the signature for this for use in listsbooleanReturns true if this method is a 'public' method that should be used for routing requests.abstract booleanisStatic()Whether the field is static.static FieldRefMethods inherited from class org.kohsuke.stapler.lang.AnnotatedRef
getAnnotation, hasAnnotation
-
Constructor Details
-
FieldRef
public FieldRef()
-
-
Method Details
-
getName
Name of the method.- See Also:
-
isStatic
public abstract boolean isStatic()Whether the field is static. -
get
Obtains the value of the field of the instance.- Throws:
IllegalAccessException
-
getQualifiedName
Gets a fully qualified name of this field that includes the declaring type. -
getSignature
Gets the signature for this for use in lists- See Also:
-
getReturnType
-
isRoutable
public boolean isRoutable()Returns true if this method is a 'public' method that should be used for routing requests. -
wrap
-