public static enum IMdac.MdacState extends Enum<IMdac.MdacState>
Enum Constant and Description |
---|
Incompatible
This state indicates the module could not be loaded at all.
|
Loaded
This state indicates the module is loaded but not started.
|
Started
This states indicates the module is loaded and started.
|
Modifier and Type | Method and Description |
---|---|
static IMdac.MdacState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IMdac.MdacState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMdac.MdacState Loaded
public static final IMdac.MdacState Started
public static final IMdac.MdacState Incompatible
public static IMdac.MdacState[] values()
for (IMdac.MdacState c : IMdac.MdacState.values()) System.out.println(c);
public static IMdac.MdacState 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 null