Record Class FindInterceptorDef
java.lang.Object
java.lang.Record
io.micronaut.data.processor.visitors.FindInterceptorDef
- Record Components:
- returnType- The return type
- isContainer- Is container return type
- interceptor- The interceptor
@Internal
public record FindInterceptorDef(io.micronaut.inject.ast.ClassElement returnType, boolean isContainer, io.micronaut.inject.ast.ClassElement interceptor)
extends Record
Teh find interceptor definition.
- 
Constructor SummaryConstructorsConstructorDescriptionFindInterceptorDef(io.micronaut.inject.ast.ClassElement returnType, boolean isContainer, io.micronaut.inject.ast.ClassElement interceptor) Creates an instance of aFindInterceptorDefrecord class.FindInterceptorDef(io.micronaut.inject.ast.ClassElement returnType, io.micronaut.inject.ast.ClassElement interceptor) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.io.micronaut.inject.ast.ClassElementReturns the value of theinterceptorrecord component.booleanReturns the value of theisContainerrecord component.io.micronaut.inject.ast.ClassElementReturns the value of thereturnTyperecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
FindInterceptorDefpublic FindInterceptorDef(io.micronaut.inject.ast.ClassElement returnType, io.micronaut.inject.ast.ClassElement interceptor) 
- 
FindInterceptorDefpublic FindInterceptorDef(io.micronaut.inject.ast.ClassElement returnType, boolean isContainer, io.micronaut.inject.ast.ClassElement interceptor) Creates an instance of aFindInterceptorDefrecord class.- Parameters:
- returnType- the value for the- returnTyperecord component
- isContainer- the value for the- isContainerrecord component
- interceptor- the value for the- interceptorrecord component
 
 
- 
- 
Method Details- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
returnTypepublic io.micronaut.inject.ast.ClassElement returnType()Returns the value of thereturnTyperecord component.- Returns:
- the value of the returnTyperecord component
 
- 
isContainerpublic boolean isContainer()Returns the value of theisContainerrecord component.- Returns:
- the value of the isContainerrecord component
 
- 
interceptorpublic io.micronaut.inject.ast.ClassElement interceptor()Returns the value of theinterceptorrecord component.- Returns:
- the value of the interceptorrecord component
 
 
-