Record Class BoxPlotStats
java.lang.Object
java.lang.Record
com.knezevic.edaf.v3.persistence.query.BoxPlotStats
-
Constructor Summary
Constructors -
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.max()Returns the value of themaxrecord component.mean()Returns the value of themeanrecord component.median()Returns the value of themedianrecord component.min()Returns the value of theminrecord component.q1()Returns the value of theq1record component.q3()Returns the value of theq3record component.stdDev()Returns the value of thestdDevrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
BoxPlotStats
public BoxPlotStats(Double min, Double q1, Double median, Double q3, Double max, Double mean, Double stdDev) Creates an instance of aBoxPlotStatsrecord class.- Parameters:
min- the value for theminrecord componentq1- the value for theq1record componentmedian- the value for themedianrecord componentq3- the value for theq3record componentmax- the value for themaxrecord componentmean- the value for themeanrecord componentstdDev- the value for thestdDevrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
min
Returns the value of theminrecord component.- Returns:
- the value of the
minrecord component
-
q1
Returns the value of theq1record component.- Returns:
- the value of the
q1record component
-
median
Returns the value of themedianrecord component.- Returns:
- the value of the
medianrecord component
-
q3
Returns the value of theq3record component.- Returns:
- the value of the
q3record component
-
max
Returns the value of themaxrecord component.- Returns:
- the value of the
maxrecord component
-
mean
Returns the value of themeanrecord component.- Returns:
- the value of the
meanrecord component
-
stdDev
Returns the value of thestdDevrecord component.- Returns:
- the value of the
stdDevrecord component
-