Record Class MVLogger.Entry
java.lang.Object
java.lang.Record
io.nosqlbench.nb.api.optimizers.MVLogger.Entry
-
Constructor Summary
ConstructorsConstructorDescriptionEntry(double[] params, double value) Creates an instance of aEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.double[]params()Returns the value of theparamsrecord component.final StringtoString()Returns a string representation of this record class.doublevalue()Returns the value of thevaluerecord component.
-
Constructor Details
-
Entry
public Entry(double[] params, double value) Creates an instance of aEntryrecord class.- Parameters:
params- the value for theparamsrecord componentvalue- the value for thevaluerecord component
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
params
public double[] params()Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
value
public double value()Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-