Record Class FindersUtils.InterceptorMatch
java.lang.Object
java.lang.Record
io.micronaut.data.processor.visitors.finders.FindersUtils.InterceptorMatch
- Record Components:
- returnType- The return type
- interceptor- The interceptor
- validateReturnType- True if the return type needs to be validated
- Enclosing interface:
- FindersUtils
public static record FindersUtils.InterceptorMatch(io.micronaut.inject.ast.ClassElement returnType, io.micronaut.inject.ast.ClassElement interceptor, boolean validateReturnType)
extends Record
The interceptor match.
- 
Constructor SummaryConstructorsConstructorDescriptionInterceptorMatch(io.micronaut.inject.ast.ClassElement returnType, io.micronaut.inject.ast.ClassElement interceptor) InterceptorMatch(io.micronaut.inject.ast.ClassElement returnType, io.micronaut.inject.ast.ClassElement interceptor, boolean validateReturnType) Creates an instance of aInterceptorMatchrecord class.
- 
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.io.micronaut.inject.ast.ClassElementReturns the value of thereturnTyperecord component.final StringtoString()Returns a string representation of this record class.booleanReturns the value of thevalidateReturnTyperecord component.
- 
Constructor Details- 
InterceptorMatchpublic InterceptorMatch(io.micronaut.inject.ast.ClassElement returnType, io.micronaut.inject.ast.ClassElement interceptor) 
- 
InterceptorMatchpublic InterceptorMatch(io.micronaut.inject.ast.ClassElement returnType, io.micronaut.inject.ast.ClassElement interceptor, boolean validateReturnType) Creates an instance of aInterceptorMatchrecord class.- Parameters:
- returnType- the value for the- returnTyperecord component
- interceptor- the value for the- interceptorrecord component
- validateReturnType- the value for the- validateReturnTyperecord 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
 
- 
interceptorpublic io.micronaut.inject.ast.ClassElement interceptor()Returns the value of theinterceptorrecord component.- Returns:
- the value of the interceptorrecord component
 
- 
validateReturnTypepublic boolean validateReturnType()Returns the value of thevalidateReturnTyperecord component.- Returns:
- the value of the validateReturnTyperecord component
 
 
-