public enum BootControl extends Enum<BootControl>
Enum Constant and Description |
---|
NotBootable |
Primary |
Secondary |
Modifier and Type | Method and Description |
---|---|
static BootControl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BootControl NotBootable
public static final BootControl Primary
public static final BootControl Secondary
public static BootControl[] values()
for (BootControl c : BootControl.values()) System.out.println(c);
public static BootControl 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 © 2017. All rights reserved.