Uses of Interface
com.thoughtworks.qdox.model.JavaField
-
Packages that use JavaField Package Description com.thoughtworks.qdox.builder.impl Provides the default implementation of the classes which transform the structs from the JavaParser to the Java model elementscom.thoughtworks.qdox.model Provides classes reflecting the Java model elements.com.thoughtworks.qdox.model.expression Provides classes reflecting the Java expressions.com.thoughtworks.qdox.model.impl Provides the default implementation of the classes reflecting the Java model elements.com.thoughtworks.qdox.writer Provides classes to write Java model elements in any stylecom.thoughtworks.qdox.writer.impl Provides the default implementation of classes to write Java model elements in any style. -
-
Uses of JavaField in com.thoughtworks.qdox.builder.impl
Methods in com.thoughtworks.qdox.builder.impl with parameters of type JavaField Modifier and Type Method Description protected java.lang.Object
EvaluatingVisitor. getFieldReferenceValue(JavaField javaField)
-
Uses of JavaField in com.thoughtworks.qdox.model
Methods in com.thoughtworks.qdox.model that return JavaField Modifier and Type Method Description JavaField
JavaClass. getEnumConstantByName(java.lang.String name)
JavaField
JavaClass. getFieldByName(java.lang.String name)
Equivalent ofClass.getField(String)
, where this method can resolve every fieldMethods in com.thoughtworks.qdox.model that return types with arguments of type JavaField Modifier and Type Method Description java.util.List<JavaField>
JavaClass. getEnumConstants()
Based onClass.getEnumConstants()
.java.util.List<JavaField>
JavaClass. getFields()
Equivalent ofClass.getFields()
-
Uses of JavaField in com.thoughtworks.qdox.model.expression
Fields in com.thoughtworks.qdox.model.expression declared as JavaField Modifier and Type Field Description private JavaField
FieldRef. field
Methods in com.thoughtworks.qdox.model.expression that return JavaField Modifier and Type Method Description JavaField
FieldRef. getField()
protected JavaField
FieldRef. resolveField(JavaClass javaClass, int start, int end)
-
Uses of JavaField in com.thoughtworks.qdox.model.impl
Classes in com.thoughtworks.qdox.model.impl that implement JavaField Modifier and Type Class Description class
DefaultJavaField
Fields in com.thoughtworks.qdox.model.impl with type parameters of type JavaField Modifier and Type Field Description private java.util.List<JavaField>
DefaultJavaClass. fields
Methods in com.thoughtworks.qdox.model.impl that return JavaField Modifier and Type Method Description JavaField
DefaultJavaClass. getEnumConstantByName(java.lang.String name)
JavaField
DefaultJavaType. getEnumConstantByName(java.lang.String name)
JavaField
DefaultJavaClass. getFieldByName(java.lang.String name)
Equivalent ofClass.getField(String)
, where this method can resolve every fieldJavaField
DefaultJavaType. getFieldByName(java.lang.String name)
Equivalent ofClass.getField(String)
, where this method can resolve every fieldMethods in com.thoughtworks.qdox.model.impl that return types with arguments of type JavaField Modifier and Type Method Description java.util.List<JavaField>
DefaultJavaClass. getEnumConstants()
Based onClass.getEnumConstants()
.java.util.List<JavaField>
DefaultJavaType. getEnumConstants()
Based onClass.getEnumConstants()
.java.util.List<JavaField>
DefaultJavaClass. getFields()
Equivalent ofClass.getFields()
java.util.List<JavaField>
DefaultJavaType. getFields()
Equivalent ofClass.getFields()
Methods in com.thoughtworks.qdox.model.impl with parameters of type JavaField Modifier and Type Method Description void
DefaultJavaClass. addField(JavaField javaField)
-
Uses of JavaField in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer with parameters of type JavaField Modifier and Type Method Description ModelWriter
ModelWriter. writeField(JavaField fld)
Write the java field A standard field writer should write: the javadoc the annotations the field signature -
Uses of JavaField in com.thoughtworks.qdox.writer.impl
Methods in com.thoughtworks.qdox.writer.impl with parameters of type JavaField Modifier and Type Method Description ModelWriter
DefaultModelWriter. writeField(JavaField field)
Write the java field A standard field writer should write: the javadoc the annotations the field signature
-