Class NativeUnsignedLong
java.lang.Object
java.lang.Number
com.sun.jna.IntegerType
it.unich.jgmp.nativelib.NativeUnsignedLong
- All Implemented Interfaces:
com.sun.jna.NativeMapped, 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:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a nativeunsigned longwith value 0NativeUnsignedLong(long value) Create a nativeunsigned longwith the specifiedvalue. -
Method Summary
Methods inherited from class com.sun.jna.IntegerType
compare, compare, compare, doubleValue, equals, floatValue, fromNative, hashCode, intValue, longValue, nativeType, setValue, toNative, toStringMethods inherited from class Number
byteValue, shortValue
-
Constructor Details
-
NativeUnsignedLong
public NativeUnsignedLong()Create a nativeunsigned longwith value 0 -
NativeUnsignedLong
public NativeUnsignedLong(long value) Create a nativeunsigned longwith the specifiedvalue. The value is truncated when the nativeunsigned longis a 32 bit integer.
-