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:
Messages

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

This class represents the following YANG schema fragment defined in module pcep-session-stats

 grouping error-messages-grouping {
   container error-messages {
     leaf received-error-msg-count {
       type uint32;
       default 0;
     }
     leaf sent-error-msg-count {
       type uint32;
       default 0;
     }
     container last-received-error {
       uses error;
     }
     container last-sent-error {
       uses error;
     }
   }
 }
 
  • Method Summary

    Modifier and Type
    Method
    Description
    Return errorMessages, or null if it is not present.
    @NonNull ErrorMessages
    Return errorMessages, or an empty instance if it is not present.

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

    implementedInterface
  • Method Details

    • getErrorMessages

      ErrorMessages getErrorMessages()
      Return errorMessages, or null if it is not present.
           
               The message statistics of received/sent PCErr messages.
           
       
      Returns:
      ErrorMessages errorMessages, or null if it is not present.
    • nonnullErrorMessages

      @NonNull ErrorMessages nonnullErrorMessages()
      Return errorMessages, or an empty instance if it is not present.
      Returns:
      ErrorMessages errorMessages, or an empty instance if it is not present.