Record Class RequestHandlerJandexUtil.RequestHandlerJandexDefinition
java.lang.Object
java.lang.Record
io.quarkus.amazon.lambda.deployment.RequestHandlerJandexUtil.RequestHandlerJandexDefinition
- Enclosing class:
RequestHandlerJandexUtil
public static record RequestHandlerJandexUtil.RequestHandlerJandexDefinition(org.jboss.jandex.ClassInfo handlerClass, org.jboss.jandex.MethodInfo method, RequestHandlerJandexUtil.InputOutputTypes inputOutputTypes)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionRequestHandlerJandexDefinition(org.jboss.jandex.ClassInfo handlerClass, org.jboss.jandex.MethodInfo method, RequestHandlerJandexUtil.InputOutputTypes inputOutputTypes) Creates an instance of aRequestHandlerJandexDefinitionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.org.jboss.jandex.ClassInfoReturns the value of thehandlerClassrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theinputOutputTypesrecord component.org.jboss.jandex.MethodInfomethod()Returns the value of themethodrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RequestHandlerJandexDefinition
public RequestHandlerJandexDefinition(org.jboss.jandex.ClassInfo handlerClass, org.jboss.jandex.MethodInfo method, RequestHandlerJandexUtil.InputOutputTypes inputOutputTypes) Creates an instance of aRequestHandlerJandexDefinitionrecord class.- Parameters:
handlerClass- the value for thehandlerClassrecord componentmethod- the value for themethodrecord componentinputOutputTypes- the value for theinputOutputTypesrecord component
-
-
Method Details
-
toString
Returns 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. -
hashCode
public 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. -
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). -
handlerClass
public org.jboss.jandex.ClassInfo handlerClass()Returns the value of thehandlerClassrecord component.- Returns:
- the value of the
handlerClassrecord component
-
method
public org.jboss.jandex.MethodInfo method()Returns the value of themethodrecord component.- Returns:
- the value of the
methodrecord component
-
inputOutputTypes
Returns the value of theinputOutputTypesrecord component.- Returns:
- the value of the
inputOutputTypesrecord component
-