Record Class Expr.Paren
java.lang.Object
java.lang.Record
Expr.Paren
- All Implemented Interfaces:
Expr
- Enclosing interface:
Expr
Our internal representation of a Paren
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
Fields inherited from interface Expr
EPSILON, PUNCTUATION
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptione()
Returns the value of thee
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.Paren
“@Override”Expr.parse(java.lang.String)
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
-
Paren
Creates an instance of aParen
record class.- Parameters:
e
- the value for thee
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)
. -
e
Returns the value of thee
record component.- Returns:
- the value of the
e
record component
-