Interface PartitionTable
-
- All Known Implementing Classes:
FileSystemPartitionTable,MasterBootRecord
public interface PartitionTableThis interface represents a partition table.Normally a block device has a partition table at the beginning of the device which says something about the partitions on the mass storage device. For example where they start and end and which file system a specific partition has.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<PartitionTableEntry>getPartitionTableEntries()intgetSize()
-
-
-
Method Detail
-
getSize
int getSize()
- Returns:
- The size in bytes the partition table occupies.
-
getPartitionTableEntries
java.util.List<PartitionTableEntry> getPartitionTableEntries()
- Returns:
- A collection of
PartitionTableEntrys located on the block device.
-
-