Record Class ConfidenceBandPoint
java.lang.Object
java.lang.Record
com.knezevic.edaf.v3.persistence.query.ConfidenceBandPoint
-
Constructor Summary
ConstructorsConstructorDescriptionConfidenceBandPoint(double x, double mean, double ciLower, double ciUpper, Double median, long samples) Creates an instance of aConfidenceBandPointrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubleciLower()Returns the value of theciLowerrecord component.doubleciUpper()Returns the value of theciUpperrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.doublemean()Returns the value of themeanrecord component.median()Returns the value of themedianrecord component.longsamples()Returns the value of thesamplesrecord component.final StringtoString()Returns a string representation of this record class.doublex()Returns the value of thexrecord component.
-
Constructor Details
-
ConfidenceBandPoint
public ConfidenceBandPoint(double x, double mean, double ciLower, double ciUpper, Double median, long samples) Creates an instance of aConfidenceBandPointrecord class.- Parameters:
x- the value for thexrecord componentmean- the value for themeanrecord componentciLower- the value for theciLowerrecord componentciUpper- the value for theciUpperrecord componentmedian- the value for themedianrecord componentsamples- the value for thesamplesrecord 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. -
x
public double x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
mean
public double mean()Returns the value of themeanrecord component.- Returns:
- the value of the
meanrecord component
-
ciLower
public double ciLower()Returns the value of theciLowerrecord component.- Returns:
- the value of the
ciLowerrecord component
-
ciUpper
public double ciUpper()Returns the value of theciUpperrecord component.- Returns:
- the value of the
ciUpperrecord component
-
median
Returns the value of themedianrecord component.- Returns:
- the value of the
medianrecord component
-
samples
public long samples()Returns the value of thesamplesrecord component.- Returns:
- the value of the
samplesrecord component
-