Package com.sun.jna.platform.linux
Class LibC.Sysinfo
- java.lang.Object
-
- com.sun.jna.Structure
-
- com.sun.jna.platform.linux.LibC.Sysinfo
-
- Enclosing interface:
- LibC
@FieldOrder({"uptime","loads","totalram","freeram","sharedram","bufferram","totalswap","freeswap","procs","totalhigh","freehigh","mem_unit","_f"}) public static class LibC.Sysinfo extends Structure
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.sun.jna.Structure
Structure.ByReference, Structure.ByValue, Structure.FieldOrder, Structure.StructField
-
-
Field Summary
Fields Modifier and Type Field Description byte[]
_f
NativeLong
bufferram
NativeLong
freehigh
NativeLong
freeram
NativeLong
freeswap
NativeLong[]
loads
int
mem_unit
short
procs
NativeLong
sharedram
NativeLong
totalhigh
NativeLong
totalram
NativeLong
totalswap
NativeLong
uptime
-
Fields inherited from class com.sun.jna.Structure
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
-
-
Constructor Summary
Constructors Constructor Description Sysinfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected List<Field>
getFieldList()
Look up all fields in this class and superclasses.protected List<String>
getFieldOrder()
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-
Methods inherited from class com.sun.jna.Structure
allocateMemory, 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
-
uptime
public NativeLong uptime
-
loads
public NativeLong[] loads
-
totalram
public NativeLong totalram
-
freeram
public NativeLong freeram
-
sharedram
public NativeLong sharedram
-
bufferram
public NativeLong bufferram
-
totalswap
public NativeLong totalswap
-
freeswap
public NativeLong freeswap
-
procs
public short procs
-
totalhigh
public NativeLong totalhigh
-
freehigh
public NativeLong freehigh
-
mem_unit
public int mem_unit
-
_f
public byte[] _f
-
-
Method Detail
-
getFieldList
protected List<Field> getFieldList()
Description copied from class:Structure
Look up all fields in this class and superclasses.- Overrides:
getFieldList
in classStructure
- Returns:
- ordered list of public
Field
available on thisStructure
class.
-
getFieldOrder
protected List<String> getFieldOrder()
Description copied from class: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.- Overrides:
getFieldOrder
in classStructure
- Returns:
- ordered list of field names
-
-