Interface DataChangeCounter

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<DataChangeCounter>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<DataChangeCounterData>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface DataChangeCounter
    extends org.opendaylight.yangtools.yang.binding.ChildOf<DataChangeCounterData>, org.opendaylight.yangtools.yang.binding.Augmentable<DataChangeCounter>

    This class represents the following YANG schema fragment defined in module data-change-counter

     container data-change-counter {
       config false;
       list counter {
         leaf id {
           type string;
         }
         key id;
         leaf count {
           type uint32;
         }
       }
     }
     
    The schema path to identify an instance is data-change-counter/data-change-counter

    To create instances of this class use DataChangeCounterBuilder.

    See Also:
    DataChangeCounterBuilder
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<DataChangeCounter> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getCounter

        @Nullable List<Counter> getCounter()
        Returns:
        java.util.List counter, or null if not present
      • nonnullCounter

        default @NonNull List<Counter> nonnullCounter()
        Returns:
        java.util.List counter, or an empty list if it is not present