A B C D E F G H I M N P R S T V

S

SNMPAgentTest - class SNMPAgentTest.
 
SNMPAgentTest() - Constructor for class SNMPAgentTest
 
SNMPBERCodec - class snmp.SNMPBERCodec.
SNMPBERCodec defines methods for converting from ASN.1 BER encoding to SNMPObject subclasses.
SNMPBERCodec() - Constructor for class snmp.SNMPBERCodec
 
SNMPBITSTRING - Static variable in class snmp.SNMPBERCodec
 
SNMPBadValueException - exception snmp.SNMPBadValueException.
Exception thrown whenever attempt made to create SNMPObject subclass with inappropriate data, or to set its value with inappropriate data,
SNMPBadValueException() - Constructor for class snmp.SNMPBadValueException
 
SNMPBadValueException(String) - Constructor for class snmp.SNMPBadValueException
Create exception with message string.
SNMPBitString - class snmp.SNMPBitString.
Class representing a general string of bits.
SNMPBitString() - Constructor for class snmp.SNMPBitString
Create a zero-length bit string.
SNMPBitString(String) - Constructor for class snmp.SNMPBitString
Create a bit string from the bytes of the supplied String.
SNMPBitString(byte[]) - Constructor for class snmp.SNMPBitString
Create a bit string from the supplied byte array.
SNMPCOUNTER32 - Static variable in class snmp.SNMPBERCodec
 
SNMPCOUNTER64 - Static variable in class snmp.SNMPBERCodec
 
SNMPCounter32 - class snmp.SNMPCounter32.
Defines a 32-bit counter, whose value wraps if initialized with a larger value.
SNMPCounter32() - Constructor for class snmp.SNMPCounter32
Initialize value to 0.
SNMPCounter32(long) - Constructor for class snmp.SNMPCounter32
 
SNMPCounter32(byte[]) - Constructor for class snmp.SNMPCounter32
Used to initialize from the BER encoding, usually received in a response from an SNMP device responding to an SNMPGetRequest.
SNMPCounter64 - class snmp.SNMPCounter64.
Defines a 64-bit counter, whose value wraps if initialized with a larger value.
SNMPCounter64() - Constructor for class snmp.SNMPCounter64
Initialize value to 0.
SNMPCounter64(long) - Constructor for class snmp.SNMPCounter64
 
SNMPCounter64(byte[]) - Constructor for class snmp.SNMPCounter64
Used to initialize from the BER encoding, usually received in a response from an SNMP device responding to an SNMPGetRequest.
SNMPException - exception snmp.SNMPException.
Exception thrown when attempt to set or get value of SNMP OID fails.
SNMPException() - Constructor for class snmp.SNMPException
 
SNMPException(String) - Constructor for class snmp.SNMPException
Create exception with message string.
SNMPGAUGE32 - Static variable in class snmp.SNMPBERCodec
 
SNMPGETNEXTREQUEST - Static variable in class snmp.SNMPBERCodec
 
SNMPGETREQUEST - Static variable in class snmp.SNMPBERCodec
 
SNMPGETRESPONSE - Static variable in class snmp.SNMPBERCodec
 
SNMPGauge32 - class snmp.SNMPGauge32.
Defines a 32-bit gauge, whose value "pegs" at the maximum if initialized with a larger value.
SNMPGauge32() - Constructor for class snmp.SNMPGauge32
Initialize value to 0.
SNMPGauge32(long) - Constructor for class snmp.SNMPGauge32
 
SNMPGauge32(byte[]) - Constructor for class snmp.SNMPGauge32
Used to initialize from the BER encoding, usually received in a response from an SNMP device responding to an SNMPGetRequest.
SNMPGetException - exception snmp.SNMPGetException.
Exception thrown when attempt to get value of SNMP OID from device fails.
SNMPGetException(int, int) - Constructor for class snmp.SNMPGetException
Create exception with errorIndex and errorStatus
SNMPGetException(String, int, int) - Constructor for class snmp.SNMPGetException
Create exception with errorIndex, errorStatus and message string
SNMPINTEGER - Static variable in class snmp.SNMPBERCodec
 
SNMPIPADDRESS - Static variable in class snmp.SNMPBERCodec
 
SNMPIPAddress - class snmp.SNMPIPAddress.
Class to hold IP addresses; special case of SNMP Octet String.
SNMPIPAddress() - Constructor for class snmp.SNMPIPAddress
Initialize to 0.0.0.0
SNMPIPAddress(String) - Constructor for class snmp.SNMPIPAddress
Used to initialize from a string containing a standard "dotted" IP address.
SNMPIPAddress(byte[]) - Constructor for class snmp.SNMPIPAddress
Used to initialize from the BER encoding, as received in a response from an SNMP device responding to an SNMPGetRequest, or from a supplied byte array containing the address components.
SNMPInformRequestSenderInterface - class snmp.SNMPInformRequestSenderInterface.
The class SNMPInformRequestSenderInterface implements an interface for sending SNMPv2 inform request messages to a remote SNMP manager.
SNMPInformRequestSenderInterface() - Constructor for class snmp.SNMPInformRequestSenderInterface
Construct a new inform request sender object to send inform requests to remote SNMP hosts.
SNMPInformRequestSenderInterface(int) - Constructor for class snmp.SNMPInformRequestSenderInterface
Construct a new inform request sender object to send inform requests to remote SNMP hosts, binding to the specified local port.
SNMPInquisitor - class SNMPInquisitor.
 
SNMPInquisitor() - Constructor for class SNMPInquisitor
 
SNMPInteger - class snmp.SNMPInteger.
Defines an arbitrarily-sized integer value; there is no limit on size due to the use of Java.lang.BigInteger to store the value internally.
SNMPInteger() - Constructor for class snmp.SNMPInteger
Initialize value to 0.
SNMPInteger(long) - Constructor for class snmp.SNMPInteger
 
SNMPInteger(BigInteger) - Constructor for class snmp.SNMPInteger
 
SNMPInteger(byte[]) - Constructor for class snmp.SNMPInteger
Used to initialize from the BER encoding, usually received in a response from an SNMP device responding to an SNMPGetRequest.
SNMPMessage - class snmp.SNMPMessage.
Defines the SNMPMessage class as a special case of SNMPSequence.
SNMPMessage(int, String, SNMPPDU) - Constructor for class snmp.SNMPMessage
Create an SNMP message with specified version, community, and pdu.
SNMPMessage(int, String, SNMPv1TrapPDU) - Constructor for class snmp.SNMPMessage
Create an SNMP message with specified version, community, and trap pdu.
SNMPMessage(int, String, SNMPv2TrapPDU) - Constructor for class snmp.SNMPMessage
Create an SNMP message with specified version, community, and v2 trap pdu.
SNMPMessage(byte[]) - Constructor for class snmp.SNMPMessage
Construct an SNMPMessage from a received ASN.1 byte representation.
SNMPMultithreadTest - class SNMPMultithreadTest.
 
SNMPMultithreadTest() - Constructor for class SNMPMultithreadTest
 
SNMPMultithreadTest.RetrieveThread - class SNMPMultithreadTest.RetrieveThread.
 
SNMPMultithreadTest.RetrieveThread(Runnable, int) - Constructor for class SNMPMultithreadTest.RetrieveThread
 
SNMPNSAPADDRESS - Static variable in class snmp.SNMPBERCodec
 
SNMPNSAPAddress - class snmp.SNMPNSAPAddress.
Defines class for holding physical 6-byte addresses.
SNMPNSAPAddress() - Constructor for class snmp.SNMPNSAPAddress
Initialize address to 0.0.0.0.0.0.
SNMPNSAPAddress(String) - Constructor for class snmp.SNMPNSAPAddress
 
SNMPNSAPAddress(byte[]) - Constructor for class snmp.SNMPNSAPAddress
Used to initialize from the BER encoding, as received in a response from an SNMP device responding to an SNMPGetRequest, or from a supplied byte array containing the address components.
SNMPNULL - Static variable in class snmp.SNMPBERCodec
 
SNMPNull - class snmp.SNMPNull.
Object representing the SNMP Null data type.
SNMPNull() - Constructor for class snmp.SNMPNull
 
SNMPOBJECTIDENTIFIER - Static variable in class snmp.SNMPBERCodec
 
SNMPOCTETSTRING - Static variable in class snmp.SNMPBERCodec
 
SNMPOPAQUE - Static variable in class snmp.SNMPBERCodec
 
SNMPObject - class snmp.SNMPObject.
Abstract base class of all SNMP data type classes.
SNMPObject() - Constructor for class snmp.SNMPObject
 
SNMPObjectIdentifier - class snmp.SNMPObjectIdentifier.
Class representing ASN.1 object identifiers.
SNMPObjectIdentifier() - Constructor for class snmp.SNMPObjectIdentifier
Create a new empty object identifier (0-length array).
SNMPObjectIdentifier(String) - Constructor for class snmp.SNMPObjectIdentifier
Create a new object identifier from the supplied string of dot-separated nonegative decimal integer values.
SNMPObjectIdentifier(int[]) - Constructor for class snmp.SNMPObjectIdentifier
Create a new object identifier from the supplied array of nonegative integer values.
SNMPObjectIdentifier(long[]) - Constructor for class snmp.SNMPObjectIdentifier
Create a new object identifier from the supplied array of nonegative long values.
SNMPObjectIdentifier(byte[]) - Constructor for class snmp.SNMPObjectIdentifier
Used to initialize from the BER encoding, as received in a response from an SNMP device responding to an SNMPGetRequest.
SNMPOctetString - class snmp.SNMPOctetString.
Class representing a general string of octets.
SNMPOctetString() - Constructor for class snmp.SNMPOctetString
Create a zero-length octet string.
SNMPOctetString(String) - Constructor for class snmp.SNMPOctetString
Create an octet string from the bytes of the supplied String.
SNMPOctetString(byte[]) - Constructor for class snmp.SNMPOctetString
Create an octet string from the supplied byte array.
SNMPPDU - class snmp.SNMPPDU.
The SNMPPDU class represents an SNMP PDU from RFC 1157, as indicated below.
SNMPPDU(byte, int, int, int, SNMPSequence) - Constructor for class snmp.SNMPPDU
Create a new PDU of the specified type, with given request ID, error status, and error index, and containing the supplied SNMP sequence as data.
SNMPPDU(byte[], byte) - Constructor for class snmp.SNMPPDU
Create a new PDU of the specified type from the supplied BER encoding.
SNMPPORT - Static variable in class snmp.SNMPv1CommunicationInterface
 
SNMPRequestException - exception snmp.SNMPRequestException.
Exception thrown when request to get or set the value of an SNMP OID on a device fails.
SNMPRequestException(int, int) - Constructor for class snmp.SNMPRequestException
Create exception with errorIndex, errorStatus
SNMPRequestException(String, int, int) - Constructor for class snmp.SNMPRequestException
Create exception with errorIndex, errorStatus, and message string
SNMPRequestListener - interface snmp.SNMPRequestListener.
SNMPRequestListener is an interface that must be implemented by any class which wishes to act as a handler for request messages sent from remote SNMP management entities.
SNMPSEQUENCE - Static variable in class snmp.SNMPBERCodec
 
SNMPSETREQUEST - Static variable in class snmp.SNMPBERCodec
 
SNMPSample - class SNMPSample.
 
SNMPSample() - Constructor for class SNMPSample
 
SNMPSequence - class snmp.SNMPSequence.
One of the most important SNMP classes.
SNMPSequence() - Constructor for class snmp.SNMPSequence
Create a new empty sequence.
SNMPSequence(Vector) - Constructor for class snmp.SNMPSequence
Create a new SNMP sequence from the supplied Vector of SNMPObjects.
SNMPSequence(byte[]) - Constructor for class snmp.SNMPSequence
Construct an SNMPMessage from a received ASN.1 byte representation.
SNMPSetException - exception snmp.SNMPSetException.
Exception thrown when attempt to set the value of an SNMP OID on a device fails.
SNMPSetException(int, int) - Constructor for class snmp.SNMPSetException
Create exception with errorIndex and errorStatus
SNMPSetException(String, int, int) - Constructor for class snmp.SNMPSetException
Create exception with errorIndex, errorStatus and message string
SNMPTIMETICKS - Static variable in class snmp.SNMPBERCodec
 
SNMPTRAP - Static variable in class snmp.SNMPBERCodec
 
SNMPTimeTicks - class snmp.SNMPTimeTicks.
SNMP datatype used to represent time value.
SNMPTimeTicks() - Constructor for class snmp.SNMPTimeTicks
 
SNMPTimeTicks(long) - Constructor for class snmp.SNMPTimeTicks
The long value is truncated to 32 bits for SNMP v2 compatibility.
SNMPTimeTicks(byte[]) - Constructor for class snmp.SNMPTimeTicks
 
SNMPTrapReceiverInterface - class snmp.SNMPTrapReceiverInterface.
The class SNMPTrapListenerInterface implements a server which listens for trap and inform request messages sent from remote SNMP entities.
SNMPTrapReceiverInterface() - Constructor for class snmp.SNMPTrapReceiverInterface
Construct a new trap receiver object to receive traps from remote SNMP hosts.
SNMPTrapReceiverInterface(PrintWriter) - Constructor for class snmp.SNMPTrapReceiverInterface
Construct a new trap receiver object to receive traps from remote SNMP hosts.
SNMPTrapSenderInterface - class snmp.SNMPTrapSenderInterface.
The class SNMPTrapSenderInterface implements an interface for sending SNMPv1 and SNMPv2 trap messages to a remote SNMP manager.
SNMPTrapSenderInterface() - Constructor for class snmp.SNMPTrapSenderInterface
Construct a new trap sender object to send traps to remote SNMP hosts.
SNMPTrapSenderInterface(int) - Constructor for class snmp.SNMPTrapSenderInterface
Construct a new trap sender object to send traps to remote SNMP hosts, binding to the specified local port.
SNMPTrapTest - class SNMPTrapTest.
 
SNMPTrapTest() - Constructor for class SNMPTrapTest
 
SNMPUINTEGER32 - Static variable in class snmp.SNMPBERCodec
 
SNMPUInteger32 - class snmp.SNMPUInteger32.
Defines a 32-bit unsigned integer value; wraps if initialized with a larger value.
SNMPUInteger32() - Constructor for class snmp.SNMPUInteger32
Initialize value to 0.
SNMPUInteger32(long) - Constructor for class snmp.SNMPUInteger32
Initialize value to newValue; wrap if newValue too big for 32 bits.
SNMPUInteger32(byte[]) - Constructor for class snmp.SNMPUInteger32
Used to initialize from the BER encoding, usually received in a response from an SNMP device responding to an SNMPGetRequest.
SNMPUNKNOWNOBJECT - Static variable in class snmp.SNMPBERCodec
 
SNMPUnknownObject - class snmp.SNMPUnknownObject.
Used when an unknown SNMP object type is encountered.
SNMPUnknownObject(byte[]) - Constructor for class snmp.SNMPUnknownObject
Just takes a byte array, and uses this as raw bytes.
SNMPVarBindList - class snmp.SNMPVarBindList.
The SNMPVarBindList class is a specialization of SNMPSequence that contains a list of SNMPVariablePair objects.
SNMPVarBindList() - Constructor for class snmp.SNMPVarBindList
Create a new empty variable binding list.
SNMPVariablePair - class snmp.SNMPVariablePair.
The SNMPVariablePair class implements the VarBind specification detailed below from RFC 1157.
SNMPVariablePair(SNMPObjectIdentifier, SNMPObject) - Constructor for class snmp.SNMPVariablePair
Create a new variable pair having the supplied object identifier and vale.
SNMP_PORT - Static variable in class snmp.SNMPv1AgentInterface
 
SNMP_TRAP_PORT - Static variable in class snmp.SNMPInformRequestSenderInterface
 
SNMP_TRAP_PORT - Static variable in class snmp.SNMPTrapReceiverInterface
 
SNMP_TRAP_PORT - Static variable in class snmp.SNMPTrapSenderInterface
 
SNMPv1AgentInterface - class snmp.SNMPv1AgentInterface.
The class SNMPv1AgentInterface implements an interface for responding to requests sent from a remote SNMP manager.
SNMPv1AgentInterface(int) - Constructor for class snmp.SNMPv1AgentInterface
Construct a new agent object to listen for requests from remote SNMP managers.
SNMPv1AgentInterface(int, int) - Constructor for class snmp.SNMPv1AgentInterface
Construct a new agent object to listen for requests from remote SNMP managers.
SNMPv1AgentInterface(int, PrintWriter) - Constructor for class snmp.SNMPv1AgentInterface
Construct a new agent object to listen for requests from remote SNMP managers.
SNMPv1AgentInterface(int, int, PrintWriter) - Constructor for class snmp.SNMPv1AgentInterface
Construct a new agent object to listen for requests from remote SNMP managers.
SNMPv1CommunicationInterface - class snmp.SNMPv1CommunicationInterface.
The class SNMPv1CommunicationInterface defines methods for communicating with SNMP entities.
SNMPv1CommunicationInterface(int, InetAddress, String) - Constructor for class snmp.SNMPv1CommunicationInterface
Construct a new communication object to communicate with the specified host using the given community name.
SNMPv1TrapListener - interface snmp.SNMPv1TrapListener.
SNMPv1TrapListener is an interface that must be implemented by any class which wishes to act as a "listener" for trap messages sent from remote SNMP entities to an instance of the SNMPTrapListenerInterface class.
SNMPv1TrapPDU - class snmp.SNMPv1TrapPDU.
The SNMPTrapPDU class represents an SNMPv1 Trap PDU from RFC 1157, as indicated below.
SNMPv1TrapPDU(SNMPObjectIdentifier, SNMPIPAddress, int, int, SNMPTimeTicks, SNMPSequence) - Constructor for class snmp.SNMPv1TrapPDU
Create a new Trap PDU of the specified type, with given request ID, error status, and error index, and containing the supplied SNMP sequence as data.
SNMPv1TrapPDU(SNMPObjectIdentifier, SNMPIPAddress, int, int, SNMPTimeTicks) - Constructor for class snmp.SNMPv1TrapPDU
Create a new Trap PDU of the specified type, with given request ID, error status, and error index, and containing an empty SNMP sequence (VarBindList) as additional data.
SNMPv1TrapPDU(byte[]) - Constructor for class snmp.SNMPv1TrapPDU
Create a new PDU of the specified type from the supplied BER encoding.
SNMPv2BULKREQUEST - Static variable in class snmp.SNMPBERCodec
 
SNMPv2BulkRequestPDU - class snmp.SNMPv2BulkRequestPDU.
The SNMPv2BulkRequestPDU class represents an SNMPv2 Bulk Request PDU from RFC 1905, as indicated below.
SNMPv2BulkRequestPDU(int, int, int, SNMPSequence) - Constructor for class snmp.SNMPv2BulkRequestPDU
Create a new PDU of the specified type, with given request ID, non-repeaters, and max-repetitions fields, and containing the supplied SNMP sequence as data.
SNMPv2BulkRequestPDU(byte[], byte) - Constructor for class snmp.SNMPv2BulkRequestPDU
Create a new PDU of the specified type from the supplied BER encoding.
SNMPv2INFORMREQUEST - Static variable in class snmp.SNMPBERCodec
 
SNMPv2InformRequestListener - interface snmp.SNMPv2InformRequestListener.
SNMPv2InformRequestListener is an interface that must be implemented by any class which wishes to act as a "listener" for SNMPv2 inform request messages sent from remote SNMP entities to an instance of the SNMPTrapListenerInterface class.
SNMPv2InformRequestPDU - class snmp.SNMPv2InformRequestPDU.
The SNMPv2InformRequestPDU class represents an SNMPv2 Trap PDU from RFC 1448, as indicated below.
SNMPv2InformRequestPDU(SNMPTimeTicks, SNMPObjectIdentifier, SNMPSequence) - Constructor for class snmp.SNMPv2InformRequestPDU
Create a new Inform Request PDU with given trapOID and sysUptime, and containing the supplied SNMP sequence as data.
SNMPv2InformRequestPDU(SNMPObjectIdentifier, SNMPTimeTicks) - Constructor for class snmp.SNMPv2InformRequestPDU
Create a new Inform Request PDU with given trapOID and sysUptime, and containing an empty SNMP sequence (VarBindList) as additional data.
SNMPv2InformRequestPDU(byte[]) - Constructor for class snmp.SNMPv2InformRequestPDU
Create a new PDU of the specified type from the supplied BER encoding.
SNMPv2TRAP - Static variable in class snmp.SNMPBERCodec
 
SNMPv2TrapListener - interface snmp.SNMPv2TrapListener.
SNMPv2TrapListener is an interface that must be implemented by any class which wishes to act as a "listener" for SNMPv2 trap messages sent from remote SNMP entities to an instance of the SNMPTrapListenerInterface class.
SNMPv2TrapPDU - class snmp.SNMPv2TrapPDU.
The SNMPv2TrapPDU class represents an SNMPv2 Trap PDU from RFC 1448, as indicated below.
SNMPv2TrapPDU(SNMPTimeTicks, SNMPObjectIdentifier, SNMPSequence) - Constructor for class snmp.SNMPv2TrapPDU
Create a new Trap PDU with given trapOID and sysUptime, and containing the supplied SNMP sequence as data.
SNMPv2TrapPDU(SNMPObjectIdentifier, SNMPTimeTicks) - Constructor for class snmp.SNMPv2TrapPDU
Create a new Trap PDU with given trapOID and sysUptime, and containing an empty SNMP sequence (VarBindList) as additional data.
SNMPv2TrapPDU(byte[]) - Constructor for class snmp.SNMPv2TrapPDU
Create a new PDU of the specified type from the supplied BER encoding.
SNMPv2pAUTHORIZEDMESSAGE - Static variable in class snmp.SNMPBERCodec
 
SNMPv2pCOMMUNICATION - Static variable in class snmp.SNMPBERCodec
 
SNMPv2pENCRYPTEDDATA - Static variable in class snmp.SNMPBERCodec
 
SNMPv2pENCRYPTEDMESSAGE - Static variable in class snmp.SNMPBERCodec
 
sendInformRequest(int, InetAddress, String, SNMPv2InformRequestPDU) - Method in class snmp.SNMPInformRequestSenderInterface
Send the supplied SNMPv2 inform request pdu to the specified host, using the supplied version number and community name.
sendInformRequest(InetAddress, String, SNMPv2InformRequestPDU) - Method in class snmp.SNMPInformRequestSenderInterface
Send the supplied inform request pdu to the specified host, using the supplied community name and using 1 for the version field in the SNMP message.
sendTrap(int, InetAddress, String, SNMPv1TrapPDU) - Method in class snmp.SNMPTrapSenderInterface
Send the supplied SNMPv1 trap pdu to the specified host, using the supplied version number and community name.
sendTrap(InetAddress, String, SNMPv1TrapPDU) - Method in class snmp.SNMPTrapSenderInterface
Send the supplied trap pdu to the specified host, using the supplied community name and using 0 for the version field in the SNMP message (corresponding to SNMP version 1).
sendTrap(int, InetAddress, String, SNMPv2TrapPDU) - Method in class snmp.SNMPTrapSenderInterface
Send the supplied SNMPv2 trap pdu to the specified host, using the supplied version number and community name.
sendTrap(InetAddress, String, SNMPv2TrapPDU) - Method in class snmp.SNMPTrapSenderInterface
Send the supplied trap pdu to the specified host, using the supplied community name and using 1 for the version field in the SNMP message.
sequence - Variable in class snmp.SNMPSequence
 
setErrorReceiver(PrintWriter) - Method in class snmp.SNMPTrapReceiverInterface
Set the specified PrintWriter to receive error messages.
setErrorReceiver(PrintWriter) - Method in class snmp.SNMPv1AgentInterface
Set the specified PrintWriter to receive error messages.
setMIBEntry(String, SNMPObject) - Method in class snmp.SNMPv1CommunicationInterface
Set the MIB variable value of the object identifier given in startID (in dotted-integer notation).
setMIBEntry(String[], SNMPObject[]) - Method in class snmp.SNMPv1CommunicationInterface
Set the MIB variable values of the supplied object identifiers given in the itemID array (in dotted-integer notation).
setReceiveBufferSize(int) - Method in class snmp.SNMPTrapReceiverInterface
Set the size of the buffer used to receive response packets.
setReceiveBufferSize(int) - Method in class snmp.SNMPv1AgentInterface
Set the size of the buffer used to receive response packets.
setReceiveBufferSize(int) - Method in class snmp.SNMPv1CommunicationInterface
Set the size of the buffer used to receive response packets.
setSocketTimeout(int) - Method in class snmp.SNMPv1CommunicationInterface
Permits setting timeout value for underlying datagram socket (in milliseconds).
setValue(Object) - Method in class snmp.SNMPCounter32
Used to set the value with an instance of java.lang.Integer or java.lang.BigInteger.
setValue(Object) - Method in class snmp.SNMPCounter64
Used to set the value with an instance of java.lang.Integer or java.lang.BigInteger.
setValue(Object) - Method in class snmp.SNMPGauge32
Used to set the value with an instance of java.lang.Integer or java.lang.BigInteger.
setValue(Object) - Method in class snmp.SNMPIPAddress
Used to set the value from a byte array containing the address.
setValue(Object) - Method in class snmp.SNMPInteger
Used to set the value with an instance of java.lang.Integer or java.lang.BigInteger.
setValue(Object) - Method in class snmp.SNMPNSAPAddress
Used to set the value from a byte array containing the address.
setValue(Object) - Method in class snmp.SNMPNull
Always throws SNMPBadValueException (which null value did you want, anyway?)
setValue(Object) - Method in class snmp.SNMPObject
Must set the value of the SNMP object when supplied with an appropriate Java object containing an appropriate value.
setValue(Object) - Method in class snmp.SNMPObjectIdentifier
Used to set the value from an integer or long array containing the identifier components, or from a String containing a dot-separated sequence of nonegative values.
setValue(Object) - Method in class snmp.SNMPOctetString
Used to set the value from a byte array.
setValue(Object) - Method in class snmp.SNMPSequence
Used to set the contained SNMP objects from a supplied Vector.
setValue(Object) - Method in class snmp.SNMPUInteger32
Used to set the value with an instance of java.lang.Integer or java.lang.BigInteger.
setValue(Object) - Method in class snmp.SNMPUnknownObject
Takes a byte array containing the raw bytes stored as the value.
size() - Method in class snmp.SNMPSequence
Return the number of SNMPObjects contained in the sequence.
snmp - package snmp
The snmp package defines classes used to communicate with SNMP devices.
startReceiving() - Method in class snmp.SNMPTrapReceiverInterface
Start listening for trap and inform messages.
startReceiving() - Method in class snmp.SNMPv1AgentInterface
Start listening for requests from remote managers.
stopReceiving() - Method in class snmp.SNMPTrapReceiverInterface
Stop listening for trap and inform messages.
stopReceiving() - Method in class snmp.SNMPv1AgentInterface
Stop listening for requests from remote managers.

A B C D E F G H I M N P R S T V