Package org.snmp4j.model.snmp.proxy
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 Summary
Modifier and TypeMethodDescriptiongetError
(int columnIndex) org.snmp4j.smi.OID
getIndex()
Gets the SNMP row index (the OID suffix that identifies a row in this table).getIndexValue
(int indexColumn) getValue
(int columnIndex) void
int
size()
Returns the number of elements in this row.
-
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
-
getValues
-
getIndexValue
-
getValue
-
setValue
-
getError
-
size
int size()Returns the number of elements in this row.- Returns:
- the number of elements.
-