public enum PartitionTableFormat extends Enum<PartitionTableFormat>
| Enum Constant and Description | 
|---|
| GPT_PARTITION | 
| MBR_PARTITION | 
| NO_PARTITION | 
| SGI_PARTITION | 
| SUN_PARTITION | 
| Modifier and Type | Method and Description | 
|---|---|
| static PartitionTableFormat | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PartitionTableFormat[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PartitionTableFormat NO_PARTITION
public static final PartitionTableFormat MBR_PARTITION
public static final PartitionTableFormat GPT_PARTITION
public static final PartitionTableFormat SGI_PARTITION
public static final PartitionTableFormat SUN_PARTITION
public static PartitionTableFormat[] values()
for (PartitionTableFormat c : PartitionTableFormat.values()) System.out.println(c);
public static PartitionTableFormat valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020 iland Internet Solutions, Corp. All rights reserved.