public enum BootSequence extends Enum<BootSequence>
Enum Constant and Description |
---|
C |
CD |
CDN |
CN |
CND |
D |
DC |
DCN |
DN |
DNC |
N |
NC |
NCD |
ND |
NDC |
Modifier and Type | Method and Description |
---|---|
static BootSequence |
forValue(int value) |
int |
getValue() |
static BootSequence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootSequence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BootSequence C
public static final BootSequence DC
public static final BootSequence N
public static final BootSequence CDN
public static final BootSequence CND
public static final BootSequence DCN
public static final BootSequence DNC
public static final BootSequence NCD
public static final BootSequence NDC
public static final BootSequence CD
public static final BootSequence D
public static final BootSequence CN
public static final BootSequence DN
public static final BootSequence NC
public static final BootSequence ND
public static BootSequence[] values()
for (BootSequence c : BootSequence.values()) System.out.println(c);
public static BootSequence 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 nullpublic int getValue()
public static BootSequence forValue(int value)
Copyright © 2012. All Rights Reserved.