Interface UnreservedBandwidth
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
UnreservedBandwidth
@Generated("mdsal-binding-generator") public interface UnreservedBandwidth extends org.opendaylight.yangtools.yang.binding.DataObject
This class represents the following YANG schema fragment defined in module bgp-linkstate
grouping unreserved-bandwidth { leaf priority { type uint8 { range 0..7; } } leaf bandwidth { type netc:bandwidth; } }
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAMEYANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BandwidthgetBandwidth()Return bandwidth, ornullif it is not present.org.opendaylight.yangtools.yang.common.Uint8getPriority()Return priority, ornullif it is not present.Class<? extends UnreservedBandwidth>implementedInterface()default @NonNull BandwidthrequireBandwidth()Return bandwidth, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint8requirePriority()Return priority, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends UnreservedBandwidth> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getPriority
org.opendaylight.yangtools.yang.common.Uint8 getPriority()
Return priority, ornullif it is not present.- Returns:
Uint8priority, ornullif it is not present.
-
requirePriority
default @NonNull org.opendaylight.yangtools.yang.common.Uint8 requirePriority()
Return priority, guaranteed to be non-null.- Returns:
Uint8priority, guaranteed to be non-null.- Throws:
NoSuchElementException- if priority is not present
-
getBandwidth
Bandwidth getBandwidth()
Return bandwidth, ornullif it is not present.- Returns:
Bandwidthbandwidth, ornullif it is not present.
-
requireBandwidth
default @NonNull Bandwidth requireBandwidth()
Return bandwidth, guaranteed to be non-null.- Returns:
Bandwidthbandwidth, guaranteed to be non-null.- Throws:
NoSuchElementException- if bandwidth is not present
-
-