public enum YmsOperationType extends Enum<YmsOperationType>
| Enum Constant and Description |
|---|
EDIT_CONFIG_REPLY
The YANG based response is for edit operation.
|
EDIT_CONFIG_REQUEST
The YANG based request is to edit a config node / subtree in the data
store.
|
NOTIFICATION
The YANG based request is to execute an RPC defined in YANG.
|
QUERY_CONFIG_REPLY
The YANG based response is for query config operation.
|
QUERY_CONFIG_REQUEST
The YANG based request is to query a config node / subtree in the data
store.
|
QUERY_REPLY
The YANG based response is for query operation.
|
QUERY_REQUEST
The YANG based request is to query a node / subtree in the data store.
|
RPC_REPLY
The YANG based response is for a RPC operation.
|
RPC_REQUEST
The YANG based request is to execute an RPC defined in YANG.
|
| Modifier and Type | Method and Description |
|---|---|
static YmsOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YmsOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YmsOperationType EDIT_CONFIG_REQUEST
public static final YmsOperationType QUERY_CONFIG_REQUEST
public static final YmsOperationType QUERY_REQUEST
public static final YmsOperationType RPC_REQUEST
public static final YmsOperationType EDIT_CONFIG_REPLY
public static final YmsOperationType QUERY_CONFIG_REPLY
public static final YmsOperationType QUERY_REPLY
public static final YmsOperationType RPC_REPLY
public static final YmsOperationType NOTIFICATION
public static YmsOperationType[] values()
for (YmsOperationType c : YmsOperationType.values()) System.out.println(c);
public static YmsOperationType 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