Uses of Class
org.opensolaris.os.dtrace.Aggregation

Uses of Aggregation in org.opensolaris.os.dtrace
 

Methods in org.opensolaris.os.dtrace that return Aggregation
 Aggregation Aggregate.getAggregation(java.lang.String name)
          Gets the aggregation with the given name if it exists in this aggregate snapshot.
 Aggregation PrintaRecord.getAggregation(java.lang.String name)
          Gets the named aggregation.
 

Methods in org.opensolaris.os.dtrace that return types with arguments of type Aggregation
 java.util.Map<java.lang.String,Aggregation> Aggregate.asMap()
          Gets a read-only Map view of this aggregate.
 java.util.List<Aggregation> Aggregate.getAggregations()
          Gets an unordered list of all aggregations in this aggregate snapshot.
 java.util.List<Aggregation> PrintaRecord.getAggregations()
          Gets a list of the aggregations passed to the printa() action that generated this record.
 

Constructor parameters in org.opensolaris.os.dtrace with type arguments of type Aggregation
Aggregate(long snaptimeNanos, java.util.Collection<Aggregation> aggregations)
          Creates an aggregate with the given snaptime and aggregations.
PrintaRecord(long snaptimeNanos, java.util.Collection<Aggregation> aggs, java.util.Map<Tuple,java.lang.String> formattedOutput, java.util.List<Tuple> orderedTuples, java.lang.String formattedOutputString)
          Creates a record with the given snaptime, aggregations, and formatted output.