Record Class Expr.IfZero
java.lang.Object
java.lang.Record
Expr.IfZero
- All Implemented Interfaces:
Expr
- Enclosing interface:
Expr
public static record Expr.IfZero(Expr test, Expr thenAns, Expr elseAns)
extends Record
implements Expr
Our internal representation of a IfZero expr
in the E0 language.
See http://www.radford.edu/itec380/2022fall-ibarland/Project
-
Nested Class Summary
Nested classes/interfaces inherited from interface Expr
Expr.BinOp, Expr.IfZero, Expr.Num, Expr.Paren, Expr.Value
-
Field Summary
Fields inherited from interface Expr
EPSILON, PUNCTUATION
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionelseAns()
Returns the value of theelseAns
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.static Expr.IfZero
“@Override”Expr.parse(java.lang.String)
test()
Returns the value of thetest
record component.thenAns()
Returns the value of thethenAns
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
-
Constructor Details
-
IfZero
Creates an instance of aIfZero
record class.- Parameters:
test
- the value for thetest
record componentthenAns
- the value for thethenAns
record componentelseAns
- the value for theelseAns
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. -
parse
“@Override”Expr.parse(java.lang.String)
-
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)
. -
test
Returns the value of thetest
record component.- Returns:
- the value of the
test
record component
-
thenAns
Returns the value of thethenAns
record component.- Returns:
- the value of the
thenAns
record component
-
elseAns
Returns the value of theelseAns
record component.- Returns:
- the value of the
elseAns
record component
-