Package com.kenai.jffi
Class Type.TypeInfo
java.lang.Object
com.kenai.jffi.Type.TypeInfo
- Enclosing class:
- Type
This is a lazy loaded cache of builtin type info, so we can still have
Type.VOID as a public static variable without it causing the
native library to load.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final int
The minimum alignment of this type(package private) final long
The address of this type's ffi_type structure(package private) final int
The size in bytes of this type(package private) final int
The FFI type of this type -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
type
final int typeThe FFI type of this type -
size
final int sizeThe size in bytes of this type -
alignment
final int alignmentThe minimum alignment of this type -
handle
final long handleThe address of this type's ffi_type structure
-
-
Constructor Details
-
TypeInfo
TypeInfo(long handle, int type, int size, int alignment)
-