public static enum Group.GroupState extends Enum<Group.GroupState>
Enum Constant and Description |
---|
ADDED
Group is created in the data plane.
|
PENDING_ADD
Group create request is processed by ONOS and not yet
received the confirmation from data plane.
|
PENDING_ADD_RETRY
Group is missing in data plane and retrying GROUP ADD request.
|
PENDING_DELETE
Group delete request is processed by ONOS and not
received the confirmation from data plane.
|
PENDING_UPDATE
Group update request is processed by ONOS and not
received the confirmation from data plane post which
state moves to ADDED state.
|
WAITING_AUDIT_COMPLETE
Group create request is queued as group AUDIT is in progress.
|
Modifier and Type | Method and Description |
---|---|
static Group.GroupState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Group.GroupState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.GroupState WAITING_AUDIT_COMPLETE
public static final Group.GroupState PENDING_ADD
public static final Group.GroupState PENDING_ADD_RETRY
public static final Group.GroupState ADDED
public static final Group.GroupState PENDING_UPDATE
public static final Group.GroupState PENDING_DELETE
public static Group.GroupState[] values()
for (Group.GroupState c : Group.GroupState.values()) System.out.println(c);
public static Group.GroupState 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