Record Class Expr.BinOp
java.lang.Object
java.lang.Record
Expr.BinOp
- All Implemented Interfaces:
Expr
- Enclosing interface:
Expr
Our internal representation of a BinOp
in the E0 language.
See http://www.radford.edu/itec380/2022fall-ibarland/Homeworks/Project/
-
Nested Class Summary
Nested classes/interfaces inherited from interface Expr
Expr.BinOp, Expr.IfZero, Expr.Num, Expr.Paren, Expr.Value
-
Field Summary
FieldsFields inherited from interface Expr
EPSILON, PUNCTUATION
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal 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.op()
Returns the value of theop
record component.static Expr.BinOp
“@Override”Expr.parse(java.lang.String)
right()
Returns the value of theright
record component.toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface Expr
eval, myToString
-
Field Details
-
OP_FUNCS
-
OPS
-
-
Constructor Details
-
BinOp
Creates an instance of aBinOp
record class.- Parameters:
op
- the value for theop
record componentleft
- the value for theleft
record componentright
- the value for theright
record component
-
-
Method Details
-
parse
“@Override”Expr.parse(java.lang.String)
-
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)
. -
op
Returns the value of theop
record component.- Returns:
- the value of the
op
record component
-
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
-