Class MIBTree.Row
java.lang.Object
org.snmp4j.agent.io.prop.MIBTree.Row
- Enclosing class:
MIBTree
A single configured table row: an index OID and the per-column values.
- Since:
- 3.9.2
- Version:
- 3.9.2
- Author:
- SNMP4J.org
-
Constructor Summary
ConstructorsConstructorDescriptionRow(org.snmp4j.smi.OID index, org.snmp4j.smi.Variable[] values) Creates a new row. -
Method Summary
-
Constructor Details
-
Row
public Row(org.snmp4j.smi.OID index, org.snmp4j.smi.Variable[] values) Creates a new row.- Parameters:
index- the row index OID (relative to the table entry).values- the per-column values; individual elements may benullif left empty in the configuration.
-
-
Method Details
-
getIndex
public org.snmp4j.smi.OID getIndex()- Returns:
- the row index OID.
-
getValues
public org.snmp4j.smi.Variable[] getValues()- Returns:
- the per-column values (elements may be
null).
-