Uses of Class
org.jboss.jandex.FieldInfo
-
Packages that use FieldInfo Package Description org.jboss.jandex Jandex is a space efficient Java class file indexer and offline reflection library. -
-
Uses of FieldInfo in org.jboss.jandex
Fields in org.jboss.jandex with type parameters of type FieldInfo Modifier and Type Field Description private java.util.List<FieldInfo>
Indexer. fields
Methods in org.jboss.jandex that return FieldInfo Modifier and Type Method Description FieldInfo
AnnotationTarget. asField()
Casts and returns this target as aFieldInfo
if it is of kindFIELD
FieldInfo
ClassInfo. asField()
FieldInfo
FieldInfo. asField()
FieldInfo
MethodInfo. asField()
FieldInfo
MethodParameterInfo. asField()
FieldInfo
RecordComponentInfo. asField()
FieldInfo
TypeTarget. asField()
static FieldInfo
FieldInfo. create(ClassInfo clazz, java.lang.String name, Type type, short flags)
Construct a new mock Field instance.FieldInfo
ClassInfo. field(java.lang.String name)
Retrieves a field by the given name.FieldInfo
RecordComponentInfo. field()
Returns the component field corresponding to this record component.FieldInfo
FieldInfoGenerator. get(int i)
Methods in org.jboss.jandex that return types with arguments of type FieldInfo Modifier and Type Method Description java.util.List<FieldInfo>
ClassInfo. enumConstants()
Returns a list of enum constants declared by this enum class, represented asFieldInfo
.java.util.List<FieldInfo>
ClassInfo. fields()
Returns a list of all available fields.java.util.List<FieldInfo>
ClassInfo. fieldsInDeclarationOrder()
Returns a list of all fields declared in this class, in the declaration order.java.util.List<FieldInfo>
ClassInfo. unsortedFields()
Deprecated.Methods in org.jboss.jandex with parameters of type FieldInfo Modifier and Type Method Description (package private) static java.lang.String
DescriptorReconstruction. fieldDescriptor(FieldInfo field, java.util.function.Function<java.lang.String,Type> typeVariableSubstitution)
static EquivalenceKey.FieldEquivalenceKey
EquivalenceKey. of(FieldInfo field)
Returns an equivalence key for given field.private void
Indexer. parseFieldSignature(java.lang.String signature, FieldInfo field)
(package private) static java.lang.String
GenericSignatureReconstruction. reconstructGenericSignature(FieldInfo field, java.util.function.Function<java.lang.String,Type> typeVariableSubstitution)
(package private) static boolean
GenericSignatureReconstruction. requiresGenericSignature(FieldInfo field)
Method parameters in org.jboss.jandex with type arguments of type FieldInfo Modifier and Type Method Description (package private) void
ClassInfo. setFields(java.util.List<FieldInfo> fields, NameTable names)
AnnotationTransformation.FieldBuilder
AnnotationTransformation.FieldBuilder. whenField(java.util.function.Predicate<FieldInfo> predicate)
Adds a predicate that tests whether the current field matches givenpredicate
.
-