Class SizeTByReference

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

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

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

    Modifier and Type
    Method
    Description
    Get the value of size_t object pointed by this reference.
    void
    setValue(SizeT value)
    Change the value of the size_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

    • SizeTByReference

      public SizeTByReference()
      Create a reference to a newly allocated size_t object.
    • SizeTByReference

      public SizeTByReference(SizeT value)
      Create a reference to a newly allocated size_t object, which is initialized with value.
  • Method Details

    • setValue

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

      public SizeT getValue()
      Get the value of size_t object pointed by this reference.