Package jnr.ffi
Class StructLayout.Unsigned8
java.lang.Object
jnr.ffi.StructLayout.Field
jnr.ffi.StructLayout.NumberField
jnr.ffi.StructLayout.Unsigned8
- Enclosing class:
- StructLayout
An 8 bit unsigned integer
-
Field Summary
Fields inherited from class jnr.ffi.StructLayout.NumberField
type -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new 8 bit unsigned integer field.Unsigned8(StructLayout.Offset offset) Creates a new 8 bit unsigned integer field at a specific offset -
Method Summary
Modifier and TypeMethodDescriptionfinal shortGets the value for this field.final intReturns a java int representation of this field.final voidSets the value for this field.voidSets the field to a new value.final shortshortValue(Pointer ptr) Returns a java short representation of this field.Methods inherited from class jnr.ffi.StructLayout.NumberField
byteValue, doubleValue, floatValue, longValue, toStringMethods inherited from class jnr.ffi.StructLayout.Field
enclosing, offset
-
Constructor Details
-
Unsigned8
public Unsigned8()Creates a new 8 bit unsigned integer field. -
Unsigned8
Creates a new 8 bit unsigned integer 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 byte.
-
set
Sets the value for this field.- Parameters:
ptr- The pointer to the field.value- the 8 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.
-
shortValue
Returns a java short representation of this field.- Overrides:
shortValuein classStructLayout.NumberField- Parameters:
ptr- The pointer to the field.- Returns:
- a java short value for this field.
-
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.
-