public static interface InstanceIdentifier.InstanceIdentifierBuilder<T extends DataObject> extends org.opendaylight.yangtools.concepts.Builder<InstanceIdentifier<T>>
Modifier and Type | Method and Description |
---|---|
<N extends DataObject & Augmentation<? super T>> |
augmentation(Class<N> container)
Build an identifier which refers to a specific augmentation of the current InstanceIdentifier referenced by
the builder.
|
InstanceIdentifier<T> |
build()
Build the instance identifier.
|
<N extends ChildOf<? super T>> |
child(Class<N> container)
Append the specified container as a child of the current InstanceIdentifier referenced by the builder.
|
<N extends Identifiable<K> & ChildOf<? super T>,K extends Identifier<N>> |
child(Class<N> listItem,
K listKey)
Append the specified listItem as a child of the current InstanceIdentifier referenced by the builder.
|
InstanceIdentifier<T> |
toInstance()
Deprecated.
|
<N extends ChildOf<? super T>> InstanceIdentifier.InstanceIdentifierBuilder<N> child(Class<N> container)
InstanceIdentifier.builder().child(Nodes.class).build();NOTE :- The above example is only for illustration purposes InstanceIdentifier.builder() has been deprecated and should not be used. Use InstanceIdentifier.builder(Nodes.class) instead
N
- container
- <N extends Identifiable<K> & ChildOf<? super T>,K extends Identifier<N>> InstanceIdentifier.InstanceIdentifierBuilder<N> child(Class<N> listItem, K listKey)
N
- K
- listItem
- listKey
- <N extends DataObject & Augmentation<? super T>> InstanceIdentifier.InstanceIdentifierBuilder<N> augmentation(Class<N> container)
N
- augmentation typecontainer
- augmentation classInstanceIdentifier<T> build()
build
in interface org.opendaylight.yangtools.concepts.Builder<InstanceIdentifier<T extends DataObject>>
@Deprecated InstanceIdentifier<T> toInstance()
Copyright © 2019 OpenDaylight. All rights reserved.