Record Class FederationSchemaFactory.EntityMappingInfo
java.lang.Object
java.lang.Record
org.springframework.graphql.data.federation.FederationSchemaFactory.EntityMappingInfo
- Enclosing class:
FederationSchemaFactory
public static record FederationSchemaFactory.EntityMappingInfo(String typeName, HandlerMethod handlerMethod)
extends Record
- Since:
- 1.3.0
- Author:
- Rossen Stoyanchev
-
Constructor Summary
ConstructorsConstructorDescriptionEntityMappingInfo(String typeName, HandlerMethod handlerMethod) Creates an instance of aEntityMappingInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of thehandlerMethodrecord component.final inthashCode()Returns a hash code value for this object.booleanfinal StringtoString()Returns a string representation of this record class.typeName()Returns the value of thetypeNamerecord component.
-
Constructor Details
-
EntityMappingInfo
Creates an instance of aEntityMappingInforecord class.- Parameters:
typeName- the value for thetypeNamerecord componenthandlerMethod- the value for thehandlerMethodrecord component
-
-
Method Details
-
isBatchHandlerMethod
public boolean isBatchHandlerMethod() -
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). -
typeName
Returns the value of thetypeNamerecord component.- Returns:
- the value of the
typeNamerecord component
-
handlerMethod
Returns the value of thehandlerMethodrecord component.- Returns:
- the value of the
handlerMethodrecord component
-