1 20 21 22 package org.snmp4j.agent; 23 24 import org.snmp4j.smi.OID; 25 26 33 public interface MOScope { 34 35 43 OID getLowerBound(); 44 45 52 OID getUpperBound(); 53 54 59 boolean isLowerIncluded(); 60 61 66 boolean isUpperIncluded(); 67 68 77 boolean isCovered(MOScope other); 78 79 88 boolean isOverlapping(MOScope other); 89 90 98 boolean covers(OID oid); 99 100 } 101 | Popular Tags |