Uses of Interface
org.opensolaris.os.dtrace.AggregationValue

Uses of AggregationValue in org.opensolaris.os.dtrace
 

Classes in org.opensolaris.os.dtrace that implement AggregationValue
 class AvgValue
          A long value aggregated by the DTrace avg() action.
 class CountValue
          A long value aggregated by the DTrace count() action.
 class Distribution
          A frequency distribution aggregated by the DTrace quantize() or lquantize() action.
 class LinearDistribution
          A linear frequency distribution aggregated by the DTrace lquantize() action.
 class LogDistribution
          A power-of-two logarithmic frequency distribution aggregated by the DTrace quantize() action.
 class MaxValue
          A long value aggregated by the DTrace max() action.
 class MinValue
          A long value aggregated by the DTrace min() action.
 class StddevValue
          A long value aggregated by the DTrace stddev() action.
 class SumValue
          A long value aggregated by the DTrace sum() action.
 

Methods in org.opensolaris.os.dtrace that return AggregationValue
 AggregationValue AggregationRecord.getValue()
          Gets the value associated with AggregationRecord.getTuple().
 

Constructors in org.opensolaris.os.dtrace with parameters of type AggregationValue
AggregationRecord(Tuple tupleKey, AggregationValue recordValue)
          Creates an aggregation record with the given key and value.
AggregationRecord(Tuple tupleKey, AggregationValue recordValue, int n)
          Creates an aggregation record with the given key, value, and ordinal.