Modifier and Type | Method and Description |
---|---|
InstanceIdentifier.PathArgument |
DataObjectModification.getIdentifier() |
Modifier and Type | Method and Description |
---|---|
void |
DataTreeWriteCursor.delete(@NonNull InstanceIdentifier.PathArgument child)
Delete the specified child.
|
void |
DataTreeCursor.enter(InstanceIdentifier.PathArgument... path)
Move the cursor to the specified child of the current position.
|
void |
DataTreeCursor.enter(@NonNull InstanceIdentifier.PathArgument child)
Move the cursor to the specified child of the current position.
|
@Nullable DataObjectModification<? extends DataObject> |
DataObjectModification.getModifiedChild(InstanceIdentifier.PathArgument childArgument)
Returns a child modification if a node identified by
childArgument was modified by this modification. |
<T extends DataObject> |
DataTreeWriteCursor.merge(@NonNull InstanceIdentifier.PathArgument child,
T data)
Merge the specified data with the currently-present data at specified path.
|
<T extends DataObject> |
DataTreeWriteCursor.write(@NonNull InstanceIdentifier.PathArgument child,
T data)
Replace the data at specified path with supplied data.
|
Modifier and Type | Method and Description |
---|---|
void |
BindingDOMDataTreeWriteCursorAdapter.delete(InstanceIdentifier.PathArgument child) |
void |
BindingDOMDataTreeWriteCursorAdapter.enter(InstanceIdentifier.PathArgument... path) |
void |
BindingDOMDataTreeWriteCursorAdapter.enter(InstanceIdentifier.PathArgument child) |
<P extends DataObject> |
BindingDOMDataTreeWriteCursorAdapter.merge(InstanceIdentifier.PathArgument child,
P data) |
<P extends DataObject> |
BindingDOMDataTreeWriteCursorAdapter.write(InstanceIdentifier.PathArgument child,
P data) |
Modifier and Type | Method and Description |
---|---|
void |
BindingDOMDataTreeWriteCursorAdapter.enter(Iterable<InstanceIdentifier.PathArgument> path) |
Modifier and Type | Method and Description |
---|---|
InstanceIdentifier.PathArgument |
BindingCodecTreeNode.deserializePathArgument(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument arg)
Deserializes path argument for current node.
|
Modifier and Type | Method and Description |
---|---|
@NonNull BindingCodecTreeNode<?> |
BindingCodecTreeNode.bindingPathArgumentChild(InstanceIdentifier.PathArgument arg,
@Nullable List<org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument> builder)
Returns nested node context using supplied Binding Instance Identifier and adds YANG instance identifiers to
the supplied list.
|
org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument |
BindingCodecTreeNode.serializePathArgument(InstanceIdentifier.PathArgument arg)
Serializes path argument for current node.
|
Modifier and Type | Class and Description |
---|---|
static class |
InstanceIdentifier.IdentifiableItem<I extends Identifiable<T> & DataObject,T extends Identifier<I>>
An IdentifiableItem represents a object that is usually present in a collection and can be identified uniquely
by a key.
|
static class |
InstanceIdentifier.Item<T extends DataObject>
An Item represents an object that probably is only one of it's kind.
|
Modifier and Type | Method and Description |
---|---|
Iterable<InstanceIdentifier.PathArgument> |
InstanceIdentifier.getPathArguments()
Return the path argument chain which makes up this instance identifier.
|
Modifier and Type | Method and Description |
---|---|
static InstanceIdentifier<?> |
InstanceIdentifier.create(Iterable<? extends InstanceIdentifier.PathArgument> pathArguments)
Create an instance identifier for a very specific object type.
|
Copyright © 2019 OpenDaylight. All rights reserved.