Package com.sun.jna
Klasse CallbackReference.AttachOptions
java.lang.Object
com.sun.jna.Structure
com.sun.jna.CallbackReference.AttachOptions
- Umschließende Klasse:
CallbackReference
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen com.sun.jna.Structure
Structure.ByReference, Structure.ByValue, Structure.FFIType, Structure.FieldOrder, Structure.StructField, Structure.StructureSet
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungboolean
boolean
Von Klasse geerbte Felder com.sun.jna.Structure
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE, fieldList, fieldListLock, fieldOrder, fieldOrderLock, layoutInfo, layoutInfoLock, validationLock, validationMap
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungReturns this Structure's field names in their proper order.
When defining a newStructure
you shouldn't override this method, but useStructure.FieldOrder
annotation to define your field order(this also works with inheritance)
If you want to do something non-standard you can override the method and define it as followedVon Klasse geerbte Methoden com.sun.jna.Structure
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, busy, cacheTypeInfo, calculateSize, calculateSize, clear, conditionalAutoRead, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, fields, getAutoRead, getAutoWrite, getFieldList, getFields, getFieldTypeInfo, getFieldValue, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, getTypeInfo, getTypeInfo, getTypeMapper, hashCode, newInstance, newInstance, read, readField, readField, reading, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldValue, setStringEncoding, size, size, size, sortFields, toArray, toArray, toString, toString, updateStructureByReference, useMemory, useMemory, useMemory, validate, write, writeField, writeField, writeField
-
Felddetails
-
FIELDS
-
daemon
public boolean daemon -
detach
public boolean detach -
name
-
-
Konstruktordetails
-
AttachOptions
AttachOptions()
-
-
Methodendetails
-
getFieldOrder
Beschreibung aus Klasse kopiert:Structure
Returns this Structure's field names in their proper order.
When defining a newStructure
you shouldn't override this method, but useStructure.FieldOrder
annotation to define your field order(this also works with inheritance)
If you want to do something non-standard you can override the method and define it as followed
IMPORTANT When deriving from an existing Structure subclass, ensure that you augment the list provided by the superclass, e.g.protected List
getFieldOrder() { return Arrays.asList(...); }
Field order must be explicitly indicated, since the field order as returned byprotected List
getFieldOrder() { List fields = new LinkedList (super.getFieldOrder()); fields.addAll(Arrays.asList(...)); return fields; } Class.getFields()
is not guaranteed to be predictable.- Setzt außer Kraft:
getFieldOrder
in KlasseStructure
- Gibt zurück:
- ordered list of field names
-