All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>, org.opendaylight.yangtools.binding.BindingObject, org.opendaylight.yangtools.binding.DataContainer, org.opendaylight.yangtools.binding.Grouping
All Known Subinterfaces:
UnreservedBandwidth

@Generated("mdsal-binding-generator") public interface UnreservedBandwidth extends org.opendaylight.yangtools.binding.Grouping

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;
   }
 }
 
  • Method Summary

    Modifier and Type
    Method
    Description
    Return bandwidth, or null if it is not present.
    org.opendaylight.yangtools.yang.common.Uint8
    Return priority, or null if it is not present.
    default @NonNull Bandwidth
    Return bandwidth, guaranteed to be non-null.
    default @NonNull org.opendaylight.yangtools.yang.common.Uint8
    Return priority, guaranteed to be non-null.

    Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract

    implementedInterface
  • Method Details

    • getPriority

      org.opendaylight.yangtools.yang.common.Uint8 getPriority()
      Return priority, or null if it is not present.
      Returns:
      Uint8 priority, or null if it is not present.
    • requirePriority

      default @NonNull org.opendaylight.yangtools.yang.common.Uint8 requirePriority()
      Return priority, guaranteed to be non-null.
      Returns:
      Uint8 priority, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if priority is not present
    • getBandwidth

      Bandwidth getBandwidth()
      Return bandwidth, or null if it is not present.
      Returns:
      Bandwidth bandwidth, or null if it is not present.
    • requireBandwidth

      default @NonNull Bandwidth requireBandwidth()
      Return bandwidth, guaranteed to be non-null.
      Returns:
      Bandwidth bandwidth, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if bandwidth is not present