Uses of Class
org.opensolaris.os.dtrace.Distribution.Bucket

Uses of Distribution.Bucket in org.opensolaris.os.dtrace
 

Methods in org.opensolaris.os.dtrace that return Distribution.Bucket
 Distribution.Bucket Distribution.get(int index)
          Gets the bucket at the given distribution index (starting at zero).
 

Methods in org.opensolaris.os.dtrace that return types with arguments of type Distribution.Bucket
 java.util.List<Distribution.Bucket> Distribution.asList()
          Gets a read-only List view of this distribution.
 java.util.List<Distribution.Bucket> Distribution.getBuckets()
          Gets a modifiable list of this distribution's buckets ordered by bucket range.
 java.util.List<Distribution.Bucket> Distribution.getDisplayRange()
          Gets a list of buckets of interest by excluding empty buckets at both ends of the distribution.
 java.util.Iterator<Distribution.Bucket> Distribution.iterator()
          Gets an iterator over the buckets of this distribution.
 

Constructor parameters in org.opensolaris.os.dtrace with type arguments of type Distribution.Bucket
LinearDistribution(long lowerBound, long bucketStep, java.util.List<Distribution.Bucket> frequencies)
          Creates a linear distribution with the given base, step, and frequencies.
LogDistribution(java.util.List<Distribution.Bucket> frequencies)
          Creates a logarithmic distribution with the given frequencies.