Package jnr.ffi
Class Struct.Signed16
java.lang.Object
jnr.ffi.Struct.Member
jnr.ffi.Struct.NumberField
jnr.ffi.Struct.Signed16
- Enclosing class:
- Struct
A 16 bit signed integer field.
-
Field Summary
Fields inherited from class jnr.ffi.Struct.NumberField
type
-
Constructor Summary
ConstructorsConstructorDescriptionSigned16()
Creates a new 16 bit integer field.Signed16
(Struct.Offset offset) Creates a new 16 bit signed integer field at a specific offset -
Method Summary
Modifier and TypeMethodDescriptionfinal short
get()
Gets the value for this field.final int
intValue()
Returns a java int representation of this field.final void
set
(short value) Sets the value for this field.void
Sets the field to a new value.final short
Returns a java short representation of this field.Methods inherited from class jnr.ffi.Struct.NumberField
byteValue, doubleValue, floatValue, getMemory, longValue, offset, struct, toString
-
Constructor Details
-
Signed16
public Signed16()Creates a new 16 bit integer field. -
Signed16
Creates a new 16 bit signed integer field at a specific offset- Parameters:
offset
- The offset within the memory area for this field.
-
-
Method Details
-
get
public final short get()Gets the value for this field.- Returns:
- a short.
-
set
public final void set(short value) Sets the value for this field.- Parameters:
value
- the 16 bit value to set.
-
set
Description copied from class:Struct.NumberField
Sets the field to a new value.- Specified by:
set
in classStruct.NumberField
- Parameters:
value
- The new value.
-
shortValue
public final short shortValue()Returns a java short representation of this field.- Overrides:
shortValue
in classStruct.NumberField
- Returns:
- a java short value for this field.
-
intValue
public final int intValue()Returns a java int representation of this field.- Specified by:
intValue
in classStruct.NumberField
- Returns:
- a java int value for this field.
-