com.ibm.wsspi.usage.metering

Enum AggregationMethodDescriptor.RangeAggregationMethod

    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      AVG
      Average value over the time range.
      AVG_AVG
      First average the value in each time period, then find the average of the averages.
      AVG_SUM
      First sum the value in each time period, then average the sums.
      LAST
      No aggregation; display the last value in the time range.
      MAX
      Maximum value over the time range.
      MAX_SUM
      First sum the value in each time period, then find the maximum of the sums.
      MIN
      Minimum value over the time range.
      MIN_SUM
      First sum the value in each time period, then find the minimum of the sums.
      NONE
      No aggregation; do not display the metric.
      SUM
      Summation of the value over the time range.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static AggregationMethodDescriptor.RangeAggregationMethod valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AggregationMethodDescriptor.RangeAggregationMethod[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait