Record Class RequestHandlerJandexUtil.InputOutputTypes
java.lang.Object
java.lang.Record
io.quarkus.amazon.lambda.deployment.RequestHandlerJandexUtil.InputOutputTypes
- Enclosing class:
RequestHandlerJandexUtil
public static record RequestHandlerJandexUtil.InputOutputTypes(org.jboss.jandex.Type inputType, boolean isCollection, org.jboss.jandex.Type elementType, org.jboss.jandex.Type outputType)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionInputOutputTypes(org.jboss.jandex.Type inputType, boolean isCollection, org.jboss.jandex.Type elementType, org.jboss.jandex.Type outputType) Creates an instance of aInputOutputTypesrecord class. -
Method Summary
Modifier and TypeMethodDescriptionorg.jboss.jandex.TypeReturns the value of theelementTyperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.org.jboss.jandex.TypeReturns the value of theinputTyperecord component.booleanReturns the value of theisCollectionrecord component.org.jboss.jandex.TypeReturns the value of theoutputTyperecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
InputOutputTypes
public InputOutputTypes(org.jboss.jandex.Type inputType, boolean isCollection, org.jboss.jandex.Type elementType, org.jboss.jandex.Type outputType) Creates an instance of aInputOutputTypesrecord class.- Parameters:
inputType- the value for theinputTyperecord componentisCollection- the value for theisCollectionrecord componentelementType- the value for theelementTyperecord componentoutputType- the value for theoutputTyperecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
inputType
public org.jboss.jandex.Type inputType()Returns the value of theinputTyperecord component.- Returns:
- the value of the
inputTyperecord component
-
isCollection
public boolean isCollection()Returns the value of theisCollectionrecord component.- Returns:
- the value of the
isCollectionrecord component
-
elementType
public org.jboss.jandex.Type elementType()Returns the value of theelementTyperecord component.- Returns:
- the value of the
elementTyperecord component
-
outputType
public org.jboss.jandex.Type outputType()Returns the value of theoutputTyperecord component.- Returns:
- the value of the
outputTyperecord component
-