@Beta public enum ObjectiveError extends Enum<ObjectiveError>
Enum Constant and Description |
---|
BADPARAMS
Incorrect Objective parameters passed in by the caller.
|
DEVICEMISSING
The device was not available to install objectives to.
|
FLOWINSTALLATIONFAILED
The flow installation for this objective failed.
|
GROUPEXISTS
Group already exists.
|
GROUPINSTALLATIONFAILED
The group installation for this objective failed.
|
GROUPMISSING
The group was reported as installed but is missing.
|
GROUPREMOVALFAILED
The group removal for this objective failed.
|
INSTALLATIONTHRESHOLDEXCEEDED
Flow/Group installation retry threshold exceeded.
|
INSTALLATIONTIMEOUT
Installation timeout.
|
NOPIPELINER
The device has no pipeline driver to install objectives.
|
UNKNOWN
An unknown error occurred.
|
UNSUPPORTED
The driver processing this objective does not know how to process it.
|
Modifier and Type | Method and Description |
---|---|
static ObjectiveError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectiveError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectiveError UNSUPPORTED
public static final ObjectiveError FLOWINSTALLATIONFAILED
public static final ObjectiveError GROUPINSTALLATIONFAILED
public static final ObjectiveError GROUPREMOVALFAILED
public static final ObjectiveError GROUPMISSING
public static final ObjectiveError DEVICEMISSING
public static final ObjectiveError BADPARAMS
public static final ObjectiveError NOPIPELINER
public static final ObjectiveError UNKNOWN
public static final ObjectiveError INSTALLATIONTHRESHOLDEXCEEDED
public static final ObjectiveError INSTALLATIONTIMEOUT
public static final ObjectiveError GROUPEXISTS
public static ObjectiveError[] values()
for (ObjectiveError c : ObjectiveError.values()) System.out.println(c);
public static ObjectiveError 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