All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
All Known Subinterfaces:
Queues, Queues

@Generated("mdsal-binding-generator") public interface BgpNeighborQueueCountersState extends org.opendaylight.yangtools.yang.binding.DataObject
Counters relating to the message queues associated with the BGP peer

This class represents the following YANG schema fragment defined in module openconfig-bgp-operational

 grouping bgp-neighbor-queue-counters_state {
   leaf input {
     type uint32;
   }
   leaf output {
     type uint32;
   }
 }
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final @NonNull org.opendaylight.yangtools.yang.common.QName
    YANG identifier of the statement represented by this class.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.opendaylight.yangtools.yang.common.Uint32
    Return input, or null if it is not present.
    org.opendaylight.yangtools.yang.common.Uint32
    Return output, or null if it is not present.
     
    default @NonNull org.opendaylight.yangtools.yang.common.Uint32
    Return input, guaranteed to be non-null.
    default @NonNull org.opendaylight.yangtools.yang.common.Uint32
    Return output, guaranteed to be non-null.
  • Field Details

    • QNAME

      static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • implementedInterface

      Class<? extends BgpNeighborQueueCountersState> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
    • getInput

      org.opendaylight.yangtools.yang.common.Uint32 getInput()
      Return input, or null if it is not present.
           
               The number of messages received from the peer currently queued
           
       
      Returns:
      Uint32 input, or null if it is not present.
    • requireInput

      default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireInput()
      Return input, guaranteed to be non-null.
           
               The number of messages received from the peer currently queued
           
       
      Returns:
      Uint32 input, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if input is not present
    • getOutput

      org.opendaylight.yangtools.yang.common.Uint32 getOutput()
      Return output, or null if it is not present.
           
               The number of messages queued to be sent to the peer
           
       
      Returns:
      Uint32 output, or null if it is not present.
    • requireOutput

      default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireOutput()
      Return output, guaranteed to be non-null.
           
               The number of messages queued to be sent to the peer
           
       
      Returns:
      Uint32 output, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if output is not present