Interface CacheStats

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

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

    This class represents the following YANG schema fragment defined in module odl-lisp-sb

     grouping cache-stats {
       leaf hits {
         type int64;
       }
       leaf misses {
         type int64;
       }
     }
     
    The schema path to identify an instance is odl-lisp-sb/cache-stats
    • Field Detail

      • QNAME

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

      • implementedInterface

        java.lang.Class<? extends CacheStats> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getHits

        java.lang.Long getHits()
        Returns:
        java.lang.Long hits, or null if not present
      • getMisses

        java.lang.Long getMisses()
        Returns:
        java.lang.Long misses, or null if not present