Interface GroupStatistics

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    GroupStatistics, GroupStats

    public interface GroupStatistics
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module opendaylight-group-types

     grouping group-statistics {
       leaf group-id {
         type group-id;
       }
       leaf ref-count {
         type yang:counter32;
       }
       leaf packet-count {
         type yang:counter64;
       }
       leaf byte-count {
         type yang:counter64;
       }
       container duration {
         leaf second {
           type yang:counter32;
         }
         leaf nanosecond {
           type yang:counter32;
         }
       }
       container buckets {
         list bucket-counter {
           key bucket-id;
           leaf bucket-id {
             type bucket-id;
           }
           leaf packet-count {
             type yang:counter64;
           }
           leaf byte-count {
             type yang:counter64;
           }
         }
       }
     }
     
    The schema path to identify an instance is opendaylight-group-types/group-statistics
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        GroupId getGroupId()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.GroupId groupId, or null if not present
      • getRefCount

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter32 getRefCount()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter32 refCount, or null if not present
      • getPacketCount

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter64 getPacketCount()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter64 packetCount, or null if not present
      • getByteCount

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter64 getByteCount()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Counter64 byteCount, or null if not present
      • getDuration

        Duration getDuration()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.group.statistics.Duration duration, or null if not present
      • getBuckets

        Buckets getBuckets()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.group.statistics.Buckets buckets, or null if not present