Class NativeUnsignedLong

  • All Implemented Interfaces:
    com.sun.jna.NativeMapped, java.io.Serializable

    public class NativeUnsignedLong
    extends com.sun.jna.IntegerType
    The native unsigned long data type, which may be a 32 or 64 bit integer.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NativeUnsignedLong()
      Create a native unsigned long with value 0
      NativeUnsignedLong​(long value)
      Create a native unsigned long with the specified value.
    • Method Summary

      • Methods inherited from class com.sun.jna.IntegerType

        compare, compare, compare, doubleValue, equals, floatValue, fromNative, hashCode, intValue, longValue, nativeType, setValue, toNative, toString
      • Methods inherited from class java.lang.Number

        byteValue, shortValue
      • Methods inherited from class java.lang.Object

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

      • NativeUnsignedLong

        public NativeUnsignedLong()
        Create a native unsigned long with value 0
      • NativeUnsignedLong

        public NativeUnsignedLong​(long value)
        Create a native unsigned long with the specified value. The value is truncated when the native unsigned long is a 32 bit integer.