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.DataObjectThis 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 Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable LonggetHits()@Nullable LonggetMisses()Class<? extends CacheStats>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
Class<? extends CacheStats> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getHits
@Nullable Long getHits()
- Returns:
java.lang.Longhits, ornullif not present
-
getMisses
@Nullable Long getMisses()
- Returns:
java.lang.Longmisses, ornullif not present
-
-