Interface FieldModel
- All Superinterfaces:
AttributedElement, ClassElement, ClassFileElement, CompoundElement<FieldElement>, Iterable<FieldElement>
public sealed interface FieldModel
extends CompoundElement<FieldElement>, AttributedElement, ClassElement
Models a field. A field can be viewed as a composition of
FieldElements, or by random access via accessor
methods if only specific parts of the field is needed.
Fields can be obtained from ClassModel.fields(), or in the traversal
of member elements of a class.
ClassBuilder.withField(String, ClassDesc, Consumer) is the main way
to construct fields. ClassBuilder.transformField(FieldModel, FieldTransform) allows creating a
new field by selectively processing the original field elements and directing
the results to a field builder.
All field attributes are accessible as member elements.
- See Java Virtual Machine Specification:
-
4.5 Fields
- Since:
- 24
- See Also:
-
Method Summary
Methods declared in interface AttributedElement
attributes, findAttribute, findAttributesModifier and TypeMethodDescriptionReturns the attributes of this structure.findAttribute(AttributeMapper<T> attr) Finds an attribute by name.findAttributes(AttributeMapper<T> attr) Finds attributes by name.Methods declared in interface CompoundElement
elementList, elementStream, forEach, iterator, toDebugStringModifier and TypeMethodDescriptiondefault List<FieldElement> Returns aListcontaining all member elements in this compound element.default Stream<FieldElement> Returns aStreamcontaining all member elements in this compound element.voidforEach(Consumer<? super FieldElement> consumer) Invokes the provided handler with each member element in this compound element.default Iterator<FieldElement> iterator()Returns anIteratordescribing all member elements in this compound element.default StringReturns a text representation of the compound element and its contents for debugging purposes.Methods declared in interface Iterable
spliteratorModifier and TypeMethodDescriptiondefault Spliterator<FieldElement> Creates aSpliteratorover the elements described by thisIterable.
-
Method Details
-
flags
-
parent
Optional<ClassModel> parent()Returns the class model this field is a member of, if known.- Returns:
- the class model this field is a member of, if known
-
fieldName
-
fieldType
Utf8Entry fieldType()Returns the field descriptor string of this field.- Returns:
- the field descriptor string of this field
-
fieldTypeSymbol
Returns the field type, as a symbolic descriptor.- Returns:
- the field type, as a symbolic descriptor
-