Class MpExpTByReference

java.lang.Object
com.sun.jna.PointerType
com.sun.jna.ptr.ByReference
it.unich.jgmp.nativelib.MpExpTByReference
All Implemented Interfaces:
com.sun.jna.NativeMapped

public class MpExpTByReference extends com.sun.jna.ptr.ByReference
A reference to the native mp_exp_t data type.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Create a reference to a newly allocated mp_exp_t object.
    Create a reference to a newly allocated mp_exp_t object, which is initialized with value.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the value of mp_exp_t object pointed by this reference.
    void
    Change the value of the mp_exp_t object pointed by this reference.

    Methods inherited from class com.sun.jna.ptr.ByReference

    toString

    Methods inherited from class com.sun.jna.PointerType

    equals, fromNative, getPointer, hashCode, nativeType, setPointer, toNative

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • MpExpTByReference

      public MpExpTByReference()
      Create a reference to a newly allocated mp_exp_t object.
    • MpExpTByReference

      public MpExpTByReference(MpExpT value)
      Create a reference to a newly allocated mp_exp_t object, which is initialized with value.
  • Method Details

    • setValue

      public void setValue(MpExpT value)
      Change the value of the mp_exp_t object pointed by this reference.
    • getValue

      public MpExpT getValue()
      Get the value of mp_exp_t object pointed by this reference.