Package com.sun.jna.platform.linux
Class LibC.Statvfs
- java.lang.Object
- 
- com.sun.jna.Structure
- 
- com.sun.jna.platform.linux.LibC.Statvfs
 
 
- 
- Enclosing interface:
- LibC
 
 @FieldOrder({"f_bsize","f_frsize","f_blocks","f_bfree","f_bavail","f_files","f_ffree","f_favail","f_fsid","_f_unused","f_flag","f_namemax","_f_spare"}) public static class LibC.Statvfs extends Structure 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class com.sun.jna.StructureStructure.ByReference, Structure.ByValue, Structure.FieldOrder, Structure.StructField
 
- 
 - 
Field SummaryFields Modifier and Type Field Description int[]_f_spareint_f_unusedNativeLongf_bavailNativeLongf_bfreeNativeLongf_blocksNativeLongf_bsizeNativeLongf_favailNativeLongf_ffreeNativeLongf_filesNativeLongf_flagNativeLongf_frsizeNativeLongf_fsidNativeLongf_namemax- 
Fields inherited from class com.sun.jna.StructureALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
 
- 
 - 
Constructor SummaryConstructors Constructor Description Statvfs()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.List<java.lang.reflect.Field>getFieldList()Look up all fields in this class and superclasses.protected java.util.List<java.lang.String>getFieldOrder()Returns 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- 
Methods inherited from class com.sun.jna.StructureallocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
 
- 
 
- 
- 
- 
Field Detail- 
f_bsizepublic NativeLong f_bsize 
 - 
f_frsizepublic NativeLong f_frsize 
 - 
f_blockspublic NativeLong f_blocks 
 - 
f_bfreepublic NativeLong f_bfree 
 - 
f_bavailpublic NativeLong f_bavail 
 - 
f_filespublic NativeLong f_files 
 - 
f_ffreepublic NativeLong f_ffree 
 - 
f_favailpublic NativeLong f_favail 
 - 
f_fsidpublic NativeLong f_fsid 
 - 
_f_unusedpublic int _f_unused 
 - 
f_flagpublic NativeLong f_flag 
 - 
f_namemaxpublic NativeLong f_namemax 
 - 
_f_sparepublic int[] _f_spare 
 
- 
 - 
Method Detail- 
getFieldListprotected java.util.List<java.lang.reflect.Field> getFieldList() Description copied from class:StructureLook up all fields in this class and superclasses.- Overrides:
- getFieldListin class- Structure
- Returns:
- ordered list of public Fieldavailable on thisStructureclass.
 
 - 
getFieldOrderprotected java.util.List<java.lang.String> getFieldOrder() Description 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
 
 
- 
 
-