public enum YdtContextOperationType extends Enum<YdtContextOperationType>
| Enum Constant and Description |
|---|
CREATE
Type of YANG data tree action for below action:
The configuration data identified by the element
containing this attribute is added to the configuration if
and only if the configuration data does not already exist in
the configuration datastore.
|
DELETE
Type of YANG data tree action for below action:
The configuration data identified by the element
containing this attribute is deleted from the configuration
if and only if the configuration data currently exists in
the configuration datastore.
|
MERGE
Type of YANG data tree action for below action:
The configuration data identified by the element
containing this attribute is merged with the configuration
at the corresponding level in the configuration datastore.
|
NONE
The node is used as a containment node to reach the child node,
There is no change in the data store for the values of this node in the
edit request.
|
REMOVE
Type of YANG data tree action for below action:
The configuration data identified by the element
containing this attribute is deleted from the configuration
if the configuration data currently exists in the
configuration datastore.
|
REPLACE
Type of YANG data tree action for below action:
The configuration data identified by the element
containing this attribute replaces any related configuration
in the configuration datastore.
|
| Modifier and Type | Method and Description |
|---|---|
static YdtContextOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YdtContextOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YdtContextOperationType CREATE
public static final YdtContextOperationType DELETE
public static final YdtContextOperationType MERGE
public static final YdtContextOperationType REPLACE
public static final YdtContextOperationType REMOVE
public static final YdtContextOperationType NONE
public static YdtContextOperationType[] values()
for (YdtContextOperationType c : YdtContextOperationType.values()) System.out.println(c);
public static YdtContextOperationType 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