public interface StringContainer extends ChildOf<OpendaylightDefaultValueTestData>, Augmentable<StringContainer>
This class represents the following YANG schema fragment defined in module opendaylight-default-value-test
container string-container {
presence "presence container";
leaf string-leaf {
type my-string;
}
leaf string-leaf2 {
type my-derived-string;
}
leaf string-leaf3 {
type my-derived-string2;
}
leaf string-leaf4 {
type my-derived-string3;
}
leaf string-leaf5 {
type string;
default whatever;
}
leaf string-leaf6 {
type string;
}
}
The schema path to identify an instance is
opendaylight-default-value-test/string-container
To create instances of this class use StringContainerBuilder.
StringContainerBuilder| Modifier and Type | Field and Description |
|---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
| Modifier and Type | Method and Description |
|---|---|
@Nullable MyString |
getStringLeaf() |
@Nullable MyDerivedString |
getStringLeaf2() |
@Nullable MyDerivedString2 |
getStringLeaf3() |
@Nullable MyDerivedString3 |
getStringLeaf4() |
@Nullable String |
getStringLeaf5() |
@Nullable String |
getStringLeaf6() |
getImplementedInterfaceaugmentation@Nullable MyString getStringLeaf()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyString stringLeaf, or null if not present@Nullable MyDerivedString getStringLeaf2()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyDerivedString stringLeaf2, or null if not present@Nullable MyDerivedString2 getStringLeaf3()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyDerivedString2 stringLeaf3, or null if not present@Nullable MyDerivedString3 getStringLeaf4()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyDerivedString3 stringLeaf4, or null if not present@Nullable String getStringLeaf5()
java.lang.String stringLeaf5, or null if not present@Nullable String getStringLeaf6()
java.lang.String stringLeaf6, or null if not presentCopyright © 2019 OpenDaylight. All rights reserved.