java.lang.Object
com.blackhillsoftware.smf.smf98.zos.SizeRange

public class SizeRange extends Object
Job size range as defined in EnvironmentalSection.svtSubBucketRanges()

The size ranges in the records are expressed in units of 0.5% CPU utilization. The high and low values here are converted to values between 0 and 1 i.e. 0% to 100%

e.g. a value of 3 is converted as 0.5 * 3 / 100 = 0.015

  • Method Summary

    Modifier and Type
    Method
    Description
    double
    The high CPU utilization percentage for this job size range
    double
    low()
    The low CPU utilization percentage for this job size range
    The JobSize for this range

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • size

      public JobSize size()
      The JobSize for this range
      Returns:
      JobSize e.g. JobSize.LARGE
    • high

      public double high()
      The high CPU utilization percentage for this job size range
      Returns:
      double a value between 0 (0%) and 1 (100%)
    • low

      public double low()
      The low CPU utilization percentage for this job size range
      Returns:
      double a value between 0 (0%) and 1 (100%)