Uses of Class
snmp.SNMPVarBindList

Packages that use SNMPVarBindList
snmp The snmp package defines classes used to communicate with SNMP devices. 
 

Uses of SNMPVarBindList in snmp
 

Methods in snmp that return SNMPVarBindList
 SNMPVarBindList SNMPv1CommunicationInterface.retrieveAllMIBInfo(java.lang.String startID)
          Retrieve all MIB variable values subsequent to the starting object identifier given in startID (in dotted-integer notation).
 SNMPVarBindList SNMPv1CommunicationInterface.getMIBEntry(java.lang.String itemID)
          Retrieve the MIB variable value corresponding to the object identifier given in itemID (in dotted-integer notation).
 SNMPVarBindList SNMPv1CommunicationInterface.getMIBEntry(java.lang.String[] itemID)
          Retrieve the MIB variable values corresponding to the object identifiers given in the array itemID (in dotted-integer notation).
 SNMPVarBindList SNMPv1CommunicationInterface.getNextMIBEntry(java.lang.String itemID)
          Retrieve the MIB variable value corresponding to the object identifier following that given in itemID (in dotted-integer notation).
 SNMPVarBindList SNMPv1CommunicationInterface.getNextMIBEntry(java.lang.String[] itemID)
          Retrieve the MIB variable value corresponding to the object identifiers following those given in the itemID array (in dotted-integer notation).
 SNMPVarBindList SNMPv1CommunicationInterface.setMIBEntry(java.lang.String itemID, SNMPObject newValue)
          Set the MIB variable value of the object identifier given in startID (in dotted-integer notation).
 SNMPVarBindList SNMPv1CommunicationInterface.setMIBEntry(java.lang.String[] itemID, SNMPObject[] newValue)
          Set the MIB variable values of the supplied object identifiers given in the itemID array (in dotted-integer notation).
 SNMPVarBindList SNMPv1CommunicationInterface.retrieveMIBTable(java.lang.String baseID)
          Retrieve all MIB variable values whose OIDs start with the supplied baseID.
 SNMPVarBindList SNMPv1CommunicationInterface.retrieveMIBTable(java.lang.String[] baseID)
          Retrieve all MIB variable values whose OIDs start with the supplied baseIDs.