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
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract Object
Obtains the value of the field of the instance.abstract String
getName()
Name of the method.abstract String
Gets a fully qualified name of this field that includes the declaring type.abstract Class<?>
abstract String
Gets the signature for this for use in listsboolean
Returns true if this method is a 'public' method that should be used for routing requests.abstract boolean
isStatic()
Whether the field is static.static FieldRef
Methods 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
-