Package jnr.ffi
Class StructLayout.SignedLong
- java.lang.Object
-
- jnr.ffi.StructLayout.Field
-
- jnr.ffi.StructLayout.NumberField
-
- jnr.ffi.StructLayout.SignedLong
-
- Enclosing class:
- StructLayout
public class StructLayout.SignedLong extends StructLayout.NumberField
A native long integer field.
-
-
Field Summary
-
Fields inherited from class jnr.ffi.StructLayout.NumberField
type
-
-
Constructor Summary
Constructors Constructor Description SignedLong()Creates a new native long field.SignedLong(StructLayout.Offset offset)Creates a new signed native long field at a specific offset
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longget(Pointer ptr)Gets the value for this field.intintValue(Pointer ptr)Returns a java int representation of this field.longlongValue(Pointer ptr)Returns a java long representation of this field.voidset(Pointer ptr, long value)Sets the value for this field.voidset(Pointer ptr, Number value)Sets the field to a new value.StringtoString(Pointer ptr)Returns a string representation of this field.-
Methods inherited from class jnr.ffi.StructLayout.NumberField
byteValue, doubleValue, floatValue, shortValue
-
Methods inherited from class jnr.ffi.StructLayout.Field
enclosing, offset
-
-
-
-
Constructor Detail
-
SignedLong
public SignedLong()
Creates a new native long field.
-
SignedLong
public SignedLong(StructLayout.Offset offset)
Creates a new signed native long field at a specific offset- Parameters:
offset- The offset within the memory area for this field.
-
-
Method Detail
-
get
public final long get(Pointer ptr)
Gets the value for this field.- Parameters:
ptr- The pointer to the field.- Returns:
- a long.
-
set
public final void set(Pointer ptr, long value)
Sets the value for this field.- Parameters:
ptr- The pointer to the field.value- the 32/64 bit value to set.
-
set
public void set(Pointer ptr, Number value)
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
public final int intValue(Pointer ptr)
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
public final long longValue(Pointer ptr)
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
public final String toString(Pointer ptr)
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.
-
-