Class 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
      SizeTByReference()
      Create a reference to a newly allocated size_t object.
      SizeTByReference​(SizeT value)
      Create a reference to a newly allocated size_t object, which is initialized with value.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      SizeT getValue()
      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 Detail

      • 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 Detail

      • 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.