Interface FormattedDisk.DiskUsage

All Known Implementing Classes:
CpmFormatDisk.CpmDiskUsage
Enclosing class:
FormattedDisk

public static interface FormattedDisk.DiskUsage
Use this inner interface for managing the disk usage data. This offloads format-specific implementation to the implementing class. The usage is very similar to a Java2 Iterator - next must be called to set the value and isFree/isUsed are available for that location.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    boolean
     
    boolean
     
    void
     
  • Method Details

    • hasNext

      boolean hasNext()
    • next

      void next()
    • isFree

      boolean isFree()
    • isUsed

      boolean isUsed()