public enum NodeErrorStatus extends Enum<NodeErrorStatus>
Enum Constant and Description |
---|
DUPLICATE_NODE_ID_OR_NAME
More nodes with the same ID or name (currently ID == name).
|
LOCAL_CONFIGURATION_ERROR
Local task manager is not configured properly, so it can be even started.
|
LOCAL_INITIALIZATION_ERROR
Other kind of initialization error.
|
NODE_REGISTRATION_FAILED
It was not possible to register node in repository due to a permanent error.
|
NON_CLUSTERED_NODE_WITH_OTHERS
A non-clustered node runs along other (clustered or non-clustered) nodes.
|
OK
Everything is OK.
|
Modifier and Type | Method and Description |
---|---|
static NodeErrorStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeErrorStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeErrorStatus OK
public static final NodeErrorStatus DUPLICATE_NODE_ID_OR_NAME
public static final NodeErrorStatus NON_CLUSTERED_NODE_WITH_OTHERS
public static final NodeErrorStatus LOCAL_CONFIGURATION_ERROR
public static final NodeErrorStatus LOCAL_INITIALIZATION_ERROR
public static final NodeErrorStatus NODE_REGISTRATION_FAILED
public static NodeErrorStatus[] values()
for (NodeErrorStatus c : NodeErrorStatus.values()) System.out.println(c);
public static NodeErrorStatus 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 nullCopyright © 2013 evolveum. All rights reserved.