Interface MOMutableTableRow

All Superinterfaces:
MOTableRow
All Known Subinterfaces:
MOMutableRow2PC<SR>
All Known Implementing Classes:
DefaultMOMutableRow2PC, NotificationLogMib.NlmConfigLogEntryRow, NotificationLogMib.NlmLogEntryRow, NotificationLogMib.NlmLogVariableEntryRow, NotificationLogMib.NlmStatsLogEntryRow, Snmp4jConfigMib.Snmp4jCfgStorageEntryRow, Snmp4jConfigMib.Snmp4jCfgStorageSeqEntryRow, Snmp4jLogMib.Snmp4jLogConsoleHandlerEntryRow, Snmp4jLogMib.Snmp4jLogFileHandlerEntryRow, Snmp4jLogMib.Snmp4jLogHandlerEntryRow, Snmp4jLogMib.Snmp4jLogLoggerEntryRow, Snmp4jLogMib.Snmp4jLogLoggerRow, Snmp4jLogMib.Snmp4jLogLoggerToHandlerEntryRow, Snmp4jProxyMib.Snmp4jProxyEntryRow, SnmpCommunityMIB.SnmpCommunityEntryRow, SnmpCommunityMIB.SnmpTargetAddrExtEntryRow, SnmpProxyMIB.SnmpProxyRow, SnmpTargetMIB.SnmpTargetAddrEntryRow, SnmpTlsTmMib.SnmpTlstmAddrEntryRow, SnmpTlsTmMib.SnmpTlstmCertToTSNEntryRow, SnmpTlsTmMib.SnmpTlstmParamsEntryRow, SnmpUsmDhObjectsMib.UsmDHKickstartEntryRow, SnmpUsmDhObjectsMib.UsmDHUserKeyEntryRow, UsmMIB.UsmTableRow

public interface MOMutableTableRow extends MOTableRow
The MOMutableTableRow extends MOTableRow by means to change a cells value and to support modifications (i.e. row creation and deletion) across related tables.
Version:
1.0
Author:
Frank Fock
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Sets the associated base row.
    void
    setValue(int column, org.snmp4j.smi.Variable value)
    Sets the value of a column of this row.

    Methods inherited from interface org.snmp4j.agent.mo.MOTableRow

    getBaseRow, getIndex, getValue, size
  • Method Details

    • setValue

      void setValue(int column, org.snmp4j.smi.Variable value)
      Sets the value of a column of this row.
      Parameters:
      column - the (zero-based) column index.
      value - the new value for the specified column. Implementations of this method may not check the value's type to match the columns type for performance reasons. Thus, the caller have to make sure that the type's match to avoid runtime exceptions later.
    • setBaseRow

      void setBaseRow(MOTableRow baseRow)
      Description copied from interface: MOTableRow
      Sets the associated base row.
      Specified by:
      setBaseRow in interface MOTableRow
      Parameters:
      baseRow - the base row.