Class AutoValue_ImmutableValueAtQuantile

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private double quantile  
      private double value  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      double getQuantile()
      Returns the quantile of a distribution.
      double getValue()
      Returns the value at the given quantile of a distribution.
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • quantile

        private final double quantile
      • value

        private final double value
    • Constructor Detail

      • AutoValue_ImmutableValueAtQuantile

        AutoValue_ImmutableValueAtQuantile​(double quantile,
                                           double value)
    • Method Detail

      • getQuantile

        public double getQuantile()
        Description copied from interface: ValueAtQuantile
        Returns the quantile of a distribution. Must be in the interval [0.0, 1.0].
      • getValue

        public double getValue()
        Description copied from interface: ValueAtQuantile
        Returns the value at the given quantile of a distribution.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object