public static enum Error.Domain extends java.lang.Enum<Error.Domain>
| Enum Constant and Description |
|---|
CALIBRATION |
COMMUNICATION |
INTERNAL |
LOCATION |
ROUTE |
| Modifier and Type | Method and Description |
|---|---|
static Error.Domain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Error.Domain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Error.Domain INTERNAL
public static final Error.Domain COMMUNICATION
public static final Error.Domain LOCATION
public static final Error.Domain CALIBRATION
public static final Error.Domain ROUTE
public static Error.Domain[] values()
for (Error.Domain c : Error.Domain.values()) System.out.println(c);
public static Error.Domain 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 null