- All Superinterfaces:
- AnnotatedConstruct,- Element
Represents a record component.
- See Java Language Specification:
- 
8.10.1 Record Components
- Since:
- 16
- 
Method SummaryModifier and TypeMethodDescriptionReturns the executable element for the accessor associated with the given record component.Returns the enclosing element of this record component.Returns the simple name of this record component.Methods declared in interface javax.lang.model.element.Elementaccept, asType, equals, getAnnotation, getAnnotationMirrors, getAnnotationsByType, getEnclosedElements, getKind, getModifiers, hashCode
- 
Method Details- 
getEnclosingElementElement getEnclosingElement()Returns the enclosing element of this record component. The enclosing element of a record component is the record class declaring the record component.- Specified by:
- getEnclosingElementin interface- Element
- Returns:
- the enclosing element of this record component
- See Also:
 
- 
getSimpleNameName getSimpleName()Returns the simple name of this record component.The name of each record component must be distinct from the names of all other record components of the same record. - Specified by:
- getSimpleNamein interface- Element
- Returns:
- the simple name of this record component
- See Java Language Specification:
- 
6.2 Names and Identifiers
- See Also:
 
- 
getAccessorExecutableElement getAccessor()Returns the executable element for the accessor associated with the given record component.- Returns:
- the record component accessor.
 
 
-