Package com.google.gwt.core.ext.typeinfo
Interface JField
-
- All Superinterfaces:
HasAnnotations
- All Known Subinterfaces:
JEnumConstant
public interface JField extends HasAnnotations
Represents a field declaration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JClassTypegetEnclosingType()java.lang.StringgetName()JTypegetType()booleanisDefaultAccess()JEnumConstantisEnumConstant()booleanisFinal()booleanisPrivate()booleanisProtected()booleanisPublic()booleanisStatic()booleanisTransient()booleanisVolatile()-
Methods inherited from interface com.google.gwt.core.ext.typeinfo.HasAnnotations
getAnnotation, getAnnotations, getDeclaredAnnotations, isAnnotationPresent
-
-
-
-
Method Detail
-
getEnclosingType
JClassType getEnclosingType()
-
getName
java.lang.String getName()
-
getType
JType getType()
-
isDefaultAccess
boolean isDefaultAccess()
-
isEnumConstant
JEnumConstant isEnumConstant()
-
isFinal
boolean isFinal()
-
isPrivate
boolean isPrivate()
-
isProtected
boolean isProtected()
-
isPublic
boolean isPublic()
-
isStatic
boolean isStatic()
-
isTransient
boolean isTransient()
-
isVolatile
boolean isVolatile()
-
-