public interface BinaryList extends ChildOf<BinaryKeyData>, Augmentable<BinaryList>, Identifiable<BinaryListKey>
This class represents the following YANG schema fragment defined in module binary-key
list binary-list { key binary-key; leaf binary-key { type binary; } leaf binary-item { type string; } }The schema path to identify an instance is binary-key/binary-list
To create instances of this class use BinaryListBuilder
.
BinaryListBuilder
,
BinaryListKey
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable String |
getBinaryItem() |
byte[] |
getBinaryKey() |
BinaryListKey |
key()
Returns an unique key for the object.
|
getImplementedInterface
augmentation
byte[] getBinaryKey()
byte[]
binaryKey
, or null
if not present@Nullable String getBinaryItem()
java.lang.String
binaryItem
, or null
if not presentBinaryListKey key()
Identifiable
key
in interface Identifiable<BinaryListKey>
Copyright © 2019 OpenDaylight. All rights reserved.