Record Class PlausibilityCalibrator.CheckSummary

java.lang.Object
java.lang.Record
sc.fiji.snt.analysis.curation.PlausibilityCalibrator.CheckSummary
Enclosing class:
PlausibilityCalibrator

public static record PlausibilityCalibrator.CheckSummary(String checkName, String paramLabel, double computedValue, int sampleSize, double mean, double stdDev, double percentileUsed) extends Record
Summary for a single calibrated parameter.
  • Constructor Summary

    Constructors
    Constructor
    Description
    CheckSummary(String checkName, String paramLabel, double computedValue, int sampleSize, double mean, double stdDev, double percentileUsed)
    Creates an instance of a CheckSummary record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the checkName record component.
    double
    Returns the value of the computedValue record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    double
    Returns the value of the mean record component.
    Returns the value of the paramLabel record component.
    double
    Returns the value of the percentileUsed record component.
    int
    Returns the value of the sampleSize record component.
    double
    Returns the value of the stdDev record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • CheckSummary

      public CheckSummary(String checkName, String paramLabel, double computedValue, int sampleSize, double mean, double stdDev, double percentileUsed)
      Creates an instance of a CheckSummary record class.
      Parameters:
      checkName - the value for the checkName record component
      paramLabel - the value for the paramLabel record component
      computedValue - the value for the computedValue record component
      sampleSize - the value for the sampleSize record component
      mean - the value for the mean record component
      stdDev - the value for the stdDev record component
      percentileUsed - the value for the percentileUsed record component
  • Method Details

    • toString

      public final 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • checkName

      public String checkName()
      Returns the value of the checkName record component.
      Returns:
      the value of the checkName record component
    • paramLabel

      public String paramLabel()
      Returns the value of the paramLabel record component.
      Returns:
      the value of the paramLabel record component
    • computedValue

      public double computedValue()
      Returns the value of the computedValue record component.
      Returns:
      the value of the computedValue record component
    • sampleSize

      public int sampleSize()
      Returns the value of the sampleSize record component.
      Returns:
      the value of the sampleSize record component
    • mean

      public double mean()
      Returns the value of the mean record component.
      Returns:
      the value of the mean record component
    • stdDev

      public double stdDev()
      Returns the value of the stdDev record component.
      Returns:
      the value of the stdDev record component
    • percentileUsed

      public double percentileUsed()
      Returns the value of the percentileUsed record component.
      Returns:
      the value of the percentileUsed record component