Module org.snmp4j

Interface AssignableFromIntArray

All Known Implementing Classes:
OID

public interface AssignableFromIntArray
The AssignableFromIntArray interface describes objects whose value can be set from an int array and converted back to an int array.
Since:
1.10.1
Version:
1.10.1
Author:
Frank Fock
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setValue(int[] value)
    Sets the value of this object from the supplied int array.
    int[]
    Returns the value of this object as an int array.
  • Method Details

    • setValue

      void setValue(int[] value)
      Sets the value of this object from the supplied int array.
      Parameters:
      value - an int array.
    • toIntArray

      int[] toIntArray()
      Returns the value of this object as an int array.
      Returns:
      an int array.