Package app.ductape.sdk.warehouse.types
Record Class WarehouseJoinTypes.GraphJoinConfig
java.lang.Object
java.lang.Record
app.ductape.sdk.warehouse.types.WarehouseJoinTypes.GraphJoinConfig
- Enclosing class:
- WarehouseJoinTypes
public static record WarehouseJoinTypes.GraphJoinConfig(String relationship, String direction, Integer minDepth, Integer maxDepth, Map<String,Object> nodeFilter, Map<String,Object> relationshipFilter)
extends Record
TS
IGraphJoinConfig-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedirectionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.maxDepth()Returns the value of themaxDepthrecord component.minDepth()Returns the value of theminDepthrecord component.Returns the value of thenodeFilterrecord component.Returns the value of therelationshiprecord component.Returns the value of therelationshipFilterrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
GraphJoinConfig
public GraphJoinConfig(String relationship, String direction, Integer minDepth, Integer maxDepth, Map<String, Object> nodeFilter, Map<String, Object> relationshipFilter) Creates an instance of aGraphJoinConfigrecord class.- Parameters:
relationship- the value for therelationshiprecord componentdirection- the value for thedirectionrecord componentminDepth- the value for theminDepthrecord componentmaxDepth- the value for themaxDepthrecord componentnodeFilter- the value for thenodeFilterrecord componentrelationshipFilter- the value for therelationshipFilterrecord 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). -
relationship
Returns the value of therelationshiprecord component.- Returns:
- the value of the
relationshiprecord component
-
direction
Returns the value of thedirectionrecord component.- Returns:
- the value of the
directionrecord component
-
minDepth
Returns the value of theminDepthrecord component.- Returns:
- the value of the
minDepthrecord component
-
maxDepth
Returns the value of themaxDepthrecord component.- Returns:
- the value of the
maxDepthrecord component
-
nodeFilter
Returns the value of thenodeFilterrecord component.- Returns:
- the value of the
nodeFilterrecord component
-
relationshipFilter
Returns the value of therelationshipFilterrecord component.- Returns:
- the value of the
relationshipFilterrecord component
-