Record Class GroovyNativeElement.Placeholder
java.lang.Object
java.lang.Record
io.micronaut.ast.groovy.visitor.GroovyNativeElement.Placeholder
- Record Components:
annotatedNode- The placeholder nodeowner- The owner nodevariableName- The variable name
- All Implemented Interfaces:
GroovyNativeElement
- Enclosing interface:
GroovyNativeElement
public static record GroovyNativeElement.Placeholder(org.codehaus.groovy.ast.ClassNode annotatedNode, GroovyNativeElement owner, String variableName)
extends Record
implements GroovyNativeElement
The placeholder element.
- Since:
- 4.0.0
- Author:
- Denis Stepanov
-
Nested Class Summary
Nested classes/interfaces inherited from interface GroovyNativeElement
GroovyNativeElement.Class, GroovyNativeElement.ClassWithOwner, GroovyNativeElement.Field, GroovyNativeElement.Method, GroovyNativeElement.Package, GroovyNativeElement.Parameter, GroovyNativeElement.Placeholder -
Constructor Summary
ConstructorsConstructorDescriptionPlaceholder(org.codehaus.groovy.ast.ClassNode annotatedNode, GroovyNativeElement owner, String variableName) Creates an instance of aPlaceholderrecord class. -
Method Summary
Modifier and TypeMethodDescriptionorg.codehaus.groovy.ast.ClassNodeReturns the value of theannotatedNoderecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.owner()Returns the value of theownerrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevariableNamerecord component.
-
Constructor Details
-
Placeholder
public Placeholder(org.codehaus.groovy.ast.ClassNode annotatedNode, GroovyNativeElement owner, String variableName) Creates an instance of aPlaceholderrecord class.- Parameters:
annotatedNode- the value for theannotatedNoderecord componentowner- the value for theownerrecord componentvariableName- the value for thevariableNamerecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
annotatedNode
public org.codehaus.groovy.ast.ClassNode annotatedNode()Returns the value of theannotatedNoderecord component.- Specified by:
annotatedNodein interfaceGroovyNativeElement- Returns:
- the value of the
annotatedNoderecord component
-
owner
-
variableName
Returns the value of thevariableNamerecord component.- Returns:
- the value of the
variableNamerecord component
-