public static enum Error.Domain extends Enum<Error.Domain>
Enum Constant and Description |
---|
CALIBRATION |
COMMUNICATION |
LOCATION |
ROUTE |
Modifier and Type | Method and Description |
---|---|
static Error.Domain |
valueOf(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 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(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