Package org.eclipse.jetty.annotations
Class AnnotationParser.FieldInfo
- java.lang.Object
-
- org.eclipse.jetty.annotations.AnnotationParser.FieldInfo
-
- Enclosing class:
- AnnotationParser
public class AnnotationParser.FieldInfo extends Object
Immutable information gathered by parsing a field on a class.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAccess()AnnotationParser.ClassInfogetClassInfo()StringgetFieldName()StringgetFieldType()StringgetSignature()ObjectgetValue()
-
-
-
Constructor Detail
-
FieldInfo
public FieldInfo(AnnotationParser.ClassInfo classInfo, String fieldName, int access, String fieldType, String signature, Object value)
-
-
Method Detail
-
getClassInfo
public AnnotationParser.ClassInfo getClassInfo()
-
getFieldName
public String getFieldName()
-
getAccess
public int getAccess()
-
getFieldType
public String getFieldType()
-
getSignature
public String getSignature()
-
getValue
public Object getValue()
-
-