public interface DecimalContainer extends ChildOf<OpendaylightDefaultValueTestData>, Augmentable<DecimalContainer>
This class represents the following YANG schema fragment defined in module opendaylight-default-value-test
container decimal-container { presence "presence container"; leaf decimal-leaf { type my-decimal; } leaf decimal-leaf2 { type my-derived-decimal; } leaf decimal-leaf3 { type my-derived-decimal2; } leaf decimal-leaf4 { type my-derived-decimal3; } leaf decimal-leaf5 { type decimal64 { fraction-digits 2; } default 120.55; } leaf decimal-leaf6 { type decimal64 { fraction-digits 3; } } }The schema path to identify an instance is opendaylight-default-value-test/decimal-container
To create instances of this class use DecimalContainerBuilder
.
DecimalContainerBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable MyDecimal |
getDecimalLeaf() |
@Nullable MyDerivedDecimal |
getDecimalLeaf2() |
@Nullable MyDerivedDecimal2 |
getDecimalLeaf3() |
@Nullable MyDerivedDecimal3 |
getDecimalLeaf4() |
@Nullable BigDecimal |
getDecimalLeaf5() |
@Nullable BigDecimal |
getDecimalLeaf6() |
getImplementedInterface
augmentation
@Nullable MyDecimal getDecimalLeaf()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyDecimal
decimalLeaf
, or null
if not present@Nullable MyDerivedDecimal getDecimalLeaf2()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyDerivedDecimal
decimalLeaf2
, or null
if not present@Nullable MyDerivedDecimal2 getDecimalLeaf3()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyDerivedDecimal2
decimalLeaf3
, or null
if not present@Nullable MyDerivedDecimal3 getDecimalLeaf4()
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns._default.value.test.norev.MyDerivedDecimal3
decimalLeaf4
, or null
if not present@Nullable BigDecimal getDecimalLeaf5()
java.math.BigDecimal
decimalLeaf5
, or null
if not present@Nullable BigDecimal getDecimalLeaf6()
java.math.BigDecimal
decimalLeaf6
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.