public interface DOMDataTreeWriteCursor extends DOMDataTreeCursor
| Modifier and Type | Method and Description | 
|---|---|
void | 
delete(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument child)
Delete the specified child. 
 | 
void | 
merge(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument child,
     org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?> data)
Merge the specified data with the currently-present data at specified path. 
 | 
void | 
write(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument child,
     org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?> data)
Replace the data at specified path with supplied data. 
 | 
void delete(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument child)
child - Child identifierorg.opendaylight.yangtools.yang.data.api.schema.tree.BackendFailedException - when implementation-specific errors occurs while servicing the
         request.void merge(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument child,
           org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?> data)
child - Child identifierdata - Data to be mergedorg.opendaylight.yangtools.yang.data.api.schema.tree.BackendFailedException - when implementation-specific errors occurs while servicing the
         request.void write(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument child,
           org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?> data)
child - Child identifierdata - New node dataorg.opendaylight.yangtools.yang.data.api.schema.tree.BackendFailedException - when implementation-specific errors occurs while servicing the
         request.Copyright © 2018 OpenDaylight. All rights reserved.