Record Class IfZero
java.lang.Object
java.lang.Record
IfZero
Our internal representation of a IfZero expr
in the A0 language.
See http://www.radford.edu/itec380/2022spring-ibarland/Project
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionIfZero
(Expr test, Expr thenAns, Expr elseAns) Creates an instance of aIfZero
record class. -
Method Summary
Modifier and TypeMethodDescriptionExpr
elseAns()
Returns the value of theelseAns
record component.final boolean
Indicates whether some other object is "equal to" this one.eval()
final int
hashCode()
Returns a hash code value for this object.static IfZero
Expr
test()
Returns the value of thetest
record component.Expr
thenAns()
Returns the value of thethenAns
record component.toString()
Returns a string representation of this record class.
-
Field Details
-
PUNCTUATION
- See Also:
-
-
Constructor Details
-
IfZero
public IfZero(Expr test, Expr thenAns, Expr elseAns) 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
-
eval
-
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
public Expr test()Returns the value of thetest
record component.- Returns:
- the value of the
test
record component
-
thenAns
public Expr thenAns()Returns the value of thethenAns
record component.- Returns:
- the value of the
thenAns
record component
-
elseAns
public Expr elseAns()Returns the value of theelseAns
record component.- Returns:
- the value of the
elseAns
record component
-