Record Class BinOpNode
java.lang.Object
java.lang.Record
com.refinedmods.refinedstorage.query.parser.node.BinOpNode
- All Implemented Interfaces:
Node
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbinOp()
Returns the value of thebinOp
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.left()
Returns the value of theleft
record component.right()
Returns the value of theright
record component.toString()
Returns a string representation of this record class.
-
Constructor Details
-
BinOpNode
Creates an instance of aBinOpNode
record class.- Parameters:
left
- the value for theleft
record componentright
- the value for theright
record componentbinOp
- the value for thebinOp
record 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)
. -
left
Returns the value of theleft
record component.- Returns:
- the value of the
left
record component
-
right
Returns the value of theright
record component.- Returns:
- the value of the
right
record component
-
binOp
Returns the value of thebinOp
record component.- Returns:
- the value of the
binOp
record component
-