Package org.opennms.netmgt.snmp
Interface SnmpValueFactory
-
- All Known Implementing Classes:
JoeSnmpValueFactory
,MockSnmpValueFactory
,Snmp4JValueFactory
public interface SnmpValueFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SnmpValue
getCounter32(long val)
SnmpValue
getCounter64(java.math.BigInteger val)
SnmpValue
getGauge32(long val)
SnmpValue
getInt32(int val)
SnmpValue
getIpAddress(java.net.InetAddress val)
SnmpValue
getNull()
SnmpValue
getObjectId(SnmpObjId objId)
SnmpValue
getOctetString(byte[] bytes)
SnmpValue
getOpaque(byte[] bs)
SnmpValue
getTimeTicks(long val)
SnmpValue
getValue(int type, byte[] bytes)
-
-
-
Method Detail
-
getOctetString
SnmpValue getOctetString(byte[] bytes)
-
getCounter32
SnmpValue getCounter32(long val)
-
getCounter64
SnmpValue getCounter64(java.math.BigInteger val)
-
getGauge32
SnmpValue getGauge32(long val)
-
getInt32
SnmpValue getInt32(int val)
-
getIpAddress
SnmpValue getIpAddress(java.net.InetAddress val)
-
getTimeTicks
SnmpValue getTimeTicks(long val)
-
getValue
SnmpValue getValue(int type, byte[] bytes)
-
getNull
SnmpValue getNull()
-
getOpaque
SnmpValue getOpaque(byte[] bs)
-
-