public final class Smf78Record extends SmfRecord
Mapping for SMF type 78 record. Typically you would obtain Smf78Records by reading SmfRecords and using

Smf78Record.from(SmfRecord)

to create the specialized record after determining the record type.

Sections
Most section types are returned in a List containing 0 or more of the section type, depending on the values in the header triplet. If the record is documented as always having exactly 1 of a section e.g. Product Section, the single section is returned.
  • Constructor Details

    • Smf78Record

      public Smf78Record(byte[] data)
      Constructs an Smf78Record from the specified byte array.
      Parameters:
      data - a byte array containing the SMF record data
    • Smf78Record

      public Smf78Record(SmfRecord record)
      Constructs a new Smf78Record from an existing SMF record. The 2 records share the same data byte array.
      Parameters:
      record - an existing SMF record
  • Method Details

    • from

      public static Smf78Record from(SmfRecord record)
      Constructs a new Smf78Record from an existing SMF record. The 2 records share the same data byte array.
      Parameters:
      record - an existing SMF record
    • from

      public static Smf78Record from(byte[] data)
      Constructs an Smf78Record from the specified byte array.
      Parameters:
      data - a byte array containing the SMF record data
    • header

      public Header header()
      Get the Product section for this record
      Returns:
      SMF type 78 record header
    • productSection

      public ProductSection productSection()
      Get the header for this record
      Returns:
      SMF type 78 Product Section
    • virtualStorageCommonStorageDataSections

      public List<VirtualStorageCommonStorageDataSection> virtualStorageCommonStorageDataSections()
      Get a List containing Virtual Storage Common Storage Data sections from the record
      Returns:
      a list of VirtualStorageCommonStorageDataSections (possibly empty)
    • virtualStoragePrivateAreaDataSections

      public List<VirtualStoragePrivateAreaDataSection> virtualStoragePrivateAreaDataSections()
      Get a List containing Virtual Storage Private Area Data sections from the record
      Returns:
      a list of VirtualStoragePrivateAreaDataSections (possibly empty)
    • virtualStoragePrivateAreaSubpoolSections

      public List<VirtualStoragePrivateAreaSubpoolSection> virtualStoragePrivateAreaSubpoolSections()
      Get a List containing Virtual Storage Private Area Subpool sections from the record
      Returns:
      a list of VirtualStoragePrivateAreaSubpoolSections (possibly empty)
    • ioControlSections

      public List<IoControlSection> ioControlSections()
      Get a List containing I/O Queuing Control sections from the record
      Returns:
      a list of IoControlSections (possibly empty)
    • ioQueuingConfigurationControlSections

      public List<IoQueuingConfigurationControlSection> ioQueuingConfigurationControlSections()
      Get a List containing I/O Queuing Configuration Control sections from the record
      Returns:
      a list of IoQueuingConfigurationControlSections (possibly empty)
    • ioQueuingDataSections

      public List<IoQueuingDataSection> ioQueuingDataSections()
      Get a List containing I/O Queuing Data sections from the record
      Returns:
      a list of IoQueuingDataSections (possibly empty)
    • hyperPavDataSections

      public List<HyperPavDataSection> hyperPavDataSections()
      Get a List containing HyperPAV Data sections from the record
      Returns:
      a list of HyperPavDataSections (possibly empty)