Interface SnmpProxyColumn<T>

Type Parameters:
T - the model value type for this column.
All Known Subinterfaces:
SnmpProxyIndexColumn<T>
All Known Implementing Classes:
SnmpColumn, SnmpIndexColumn

public interface SnmpProxyColumn<T>
The SnmpProxyColumn represents SnmpProxyObject of a SNMP columnar object.
Author:
Frank Fock
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the header string for the column.
    int
    Gets the maximum width of the column's values in characters.
    int
    Gets the minimum width of the column's values in characters.
    org.snmp4j.smi.OID
    Gets the instance OID of the SNMP columnar object associated with this proxy column.
    org.snmp4j.smi.MaxAccess
    Gets the SMI maximum access for this column.
    int
    Gets the SMI syntax (i.e., BER code) for the base syntax of this columnar SNMP object type.
    Gets the class of the model value type.
  • Method Details

    • getOID

      org.snmp4j.smi.OID getOID()
      Gets the instance OID of the SNMP columnar object associated with this proxy column.
      Returns:
      a column OID.
    • getValueClass

      Class<T> getValueClass()
      Gets the class of the model value type.
      Returns:
      the class of the model value.
    • getMinWidth

      int getMinWidth()
      Gets the minimum width of the column's values in characters.
      Returns:
      the minimum character width.
    • getMaxWidth

      int getMaxWidth()
      Gets the maximum width of the column's values in characters.
      Returns:
      the maximum character width.
    • getHeader

      String getHeader()
      Gets the header string for the column.
      Returns:
      the column header string.
    • getSmiMaxAccess

      org.snmp4j.smi.MaxAccess getSmiMaxAccess()
      Gets the SMI maximum access for this column.
      Returns:
      the maximum access as defined by the corresponding MIB.
    • getSmiSyntax

      int getSmiSyntax()
      Gets the SMI syntax (i.e., BER code) for the base syntax of this columnar SNMP object type.
      Returns:
      the SMI syntax ID for this column.