snmp
Class SNMPVarBindList

java.lang.Object
  |
  +--snmp.SNMPObject
        |
        +--snmp.SNMPSequence
              |
              +--snmp.SNMPVarBindList

public class SNMPVarBindList
extends SNMPSequence

The SNMPVarBindList class is a specialization of SNMPSequence that contains a list of SNMPVariablePair objects.

See Also:
-- variable bindings VarBind ::= SEQUENCE { name ObjectName, value ObjectSyntax } VarBindList ::= SEQUENCE OF VarBind END

Fields inherited from class snmp.SNMPSequence
sequence, type
 
Constructor Summary
SNMPVarBindList()
          Create a new empty variable binding list.
 
Method Summary
 java.lang.String toString()
          Return the variable pairs in the list, separated by newlines.
 
Methods inherited from class snmp.SNMPSequence
addSNMPObject, extractFromBEREncoding, getBEREncoding, getSNMPObjectAt, getValue, setValue, size
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SNMPVarBindList

public SNMPVarBindList()
Create a new empty variable binding list.
Method Detail

toString

public java.lang.String toString()
Return the variable pairs in the list, separated by newlines.
Overrides:
toString in class SNMPSequence