Package com.sun.jna
Class CallbackReference.AttachOptions
java.lang.Object
com.sun.jna.Structure
com.sun.jna.CallbackReference.AttachOptions
- Enclosing class:
- CallbackReference
- 
Nested Class SummaryNested classes/interfaces inherited from class com.sun.jna.StructureStructure.ByReference, Structure.ByValue, Structure.FFIType, Structure.FieldOrder, Structure.StructField, Structure.StructureSet
- 
Field SummaryFieldsModifier and TypeFieldDescriptionbooleanbooleanFields inherited from class com.sun.jna.StructureALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE, fieldOrder, layoutInfo
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns this Structure's field names in their proper order.
 When defining a newStructureyou shouldn't override this method, but useStructure.FieldOrderannotation 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 followedMethods inherited from class com.sun.jna.StructureallocateMemory, 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
- 
Field Details- 
FIELDS
- 
daemonpublic boolean daemon
- 
detachpublic boolean detach
- 
name
 
- 
- 
Constructor Details- 
AttachOptionsAttachOptions()
 
- 
- 
Method Details- 
getFieldOrderDescription copied from class:StructureReturns this Structure's field names in their proper order.
 When defining a newStructureyou shouldn't override this method, but useStructure.FieldOrderannotation 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 ListgetFieldOrder() { return Arrays.asList(...); } 
 Field order must be explicitly indicated, since the field order as returned byprotected ListgetFieldOrder() { List fields = new LinkedList (super.getFieldOrder()); fields.addAll(Arrays.asList(...)); return fields; } Class.getFields()is not guaranteed to be predictable.- Overrides:
- getFieldOrderin class- Structure
- Returns:
- ordered list of field names
 
 
-