public enum ModuleFaultCause extends java.lang.Enum<ModuleFaultCause> implements Localized
| Enum Constant and Description |
|---|
EdgeTrialModule |
FrameworkVersionMismatch |
IgnitionVersionTooOld |
MissingDependency |
Other |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
java.lang.String |
toString(java.util.Locale locale) |
static ModuleFaultCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModuleFaultCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleFaultCause IgnitionVersionTooOld
public static final ModuleFaultCause FrameworkVersionMismatch
public static final ModuleFaultCause MissingDependency
public static final ModuleFaultCause EdgeTrialModule
public static final ModuleFaultCause Other
public static ModuleFaultCause[] values()
for (ModuleFaultCause c : ModuleFaultCause.values()) System.out.println(c);
public static ModuleFaultCause valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<ModuleFaultCause>