Package jnr.ffi
Class StructLayout.UnsignedLong
java.lang.Object
jnr.ffi.StructLayout.Field
jnr.ffi.StructLayout.NumberField
jnr.ffi.StructLayout.UnsignedLong
- Enclosing class:
- StructLayout
A native long integer field.
-
Field Summary
Fields inherited from class jnr.ffi.StructLayout.NumberField
type -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new native long field.UnsignedLong(StructLayout.Offset offset) Creates a new unsigned native long field at a specific offset -
Method Summary
Modifier and TypeMethodDescriptionfinal longGets the value for this field.final intReturns a java int representation of this field.final longReturns a java long representation of this field.final voidSets the value for this field.voidSets the field to a new value.final StringReturns a string representation of this field.Methods inherited from class jnr.ffi.StructLayout.NumberField
byteValue, doubleValue, floatValue, shortValueMethods inherited from class jnr.ffi.StructLayout.Field
enclosing, offset
-
Constructor Details
-
UnsignedLong
public UnsignedLong()Creates a new native long field. -
UnsignedLong
Creates a new unsigned native long field at a specific offset- Parameters:
offset- The offset within the memory area for this field.
-
-
Method Details
-
get
Gets the value for this field.- Parameters:
ptr- The pointer to the field.- Returns:
- a int.
-
set
Sets the value for this field.- Parameters:
ptr- The pointer to the field.value- the 32/64 bit value to set.
-
set
Description copied from class:StructLayout.NumberFieldSets the field to a new value.- Specified by:
setin classStructLayout.NumberField- Parameters:
ptr- The pointer to the field.value- The new value.
-
intValue
Returns a java int representation of this field.- Specified by:
intValuein classStructLayout.NumberField- Parameters:
ptr- The pointer to the field.- Returns:
- a java int value for this field.
-
longValue
Returns a java long representation of this field.- Overrides:
longValuein classStructLayout.NumberField- Parameters:
ptr- The pointer to the field.- Returns:
- a java long value for this field.
-
toString
Returns a string representation of this field.- Overrides:
toStringin classStructLayout.NumberField- Parameters:
ptr- The pointer to the field.- Returns:
- a string representation of this field.
-