- All Superinterfaces:
AnnotatedConstruct
,Element
Represents a record component.
- See Java Language Specification:
-
8.10.1 Record Components
- Since:
- 16
-
Method Summary
Modifier 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.Element
accept, asType, equals, getAnnotation, getAnnotationMirrors, getAnnotationsByType, getEnclosedElements, getKind, getModifiers, hashCode
-
Method Details
-
getEnclosingElement
Element 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:
getEnclosingElement
in interfaceElement
- Returns:
- the enclosing element of this record component
- See Also:
-
getSimpleName
Name 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:
getSimpleName
in interfaceElement
- Returns:
- the simple name of this record component
- See Java Language Specification:
-
6.2 Names and Identifiers
- See Also:
-
getAccessor
ExecutableElement getAccessor()Returns the executable element for the accessor associated with the given record component.- Returns:
- the record component accessor.
-