Class ConfidenceInterval
- java.lang.Object
-
- com.google.privacy.differentialprivacy.ConfidenceInterval
-
public abstract class ConfidenceInterval extends java.lang.ObjectStores the upper and lower bounds of a confidence interval.
-
-
Constructor Summary
Constructors Constructor Description ConfidenceInterval()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ConfidenceIntervalcreate(double lowerBound, double upperBound)abstract doublelowerBound()abstract doubleupperBound()
-
-
-
Method Detail
-
create
public static ConfidenceInterval create(double lowerBound, double upperBound)
-
lowerBound
public abstract double lowerBound()
-
upperBound
public abstract double upperBound()
-
-