Interface SnmpProxyRow<IT,T>

Type Parameters:
IT - the class of the index column object values. Typically this depends on the index columns and can thus be only a superclass or the Object class.
T - the class of the column object values. Typically this depends on the column and can thus be only a superclass or the Object class.
All Known Implementing Classes:
SnmpProxyRowImpl

public interface SnmpProxyRow<IT,T>
The SnmpProxyRow interface provides access to a row in a SnmpTable.
Author:
Frank Fock
  • Method Details

    • getIndex

      org.snmp4j.smi.OID getIndex()
      Gets the SNMP row index (the OID suffix that identifies a row in this table).
      Returns:
      an index OID.
    • getIndexObjects

      List<IT> getIndexObjects()
    • getValues

      List<T> getValues()
    • getIndexValue

      IT getIndexValue(int indexColumn)
    • getValue

      T getValue(int columnIndex)
    • setValue

      void setValue(int columnIndex, T value)
    • getError

      SnmpErrorStatus getError(int columnIndex)
    • size

      int size()
      Returns the number of elements in this row.
      Returns:
      the number of elements.