Record Class SparsePoly.Term
java.lang.Object
java.lang.Record
it.unimi.di.prog2.h09.SparsePoly.Term
- Record Components:
coefficient- the coefficient.degree- the degree.
- Enclosing class:
SparsePoly
A record holding a non-zero term of the polynomial.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thecoefficientrecord component.private final intThe field for thedegreerecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of thecoefficientrecord component.intdegree()Returns the value of thedegreerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
coefficient
private final int coefficientThe field for thecoefficientrecord component. -
degree
private final int degreeThe field for thedegreerecord component.
-
-
Constructor Details
-
Term
public Term(int coefficient, int degree) Builds a term.- Throws:
IllegalArgumentException- ifn< 0.
-
-
Method Details
-
toString
-
hashCode
-
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 with thecomparemethod from their corresponding wrapper classes. -
coefficient
public int coefficient()Returns the value of thecoefficientrecord component.- Returns:
- the value of the
coefficientrecord component
-
degree
-