Package com.sun.jna.platform.win32
Klasse WinNT.LARGE_INTEGER
java.lang.Object
com.sun.jna.Structure
com.sun.jna.platform.win32.WinNT.LARGE_INTEGER
- Alle implementierten Schnittstellen:
Comparable<WinNT.LARGE_INTEGER>
- Bekannte direkte Unterklassen:
WinNT.LARGE_INTEGER.ByReference
- Umschließende Schnittstelle:
WinNT
@FieldOrder("u")
public static class WinNT.LARGE_INTEGER
extends Structure
implements Comparable<WinNT.LARGE_INTEGER>
A 64-bit integer;
-
Verschachtelte Klassen - Übersicht
Verschachtelte KlassenModifizierer und TypKlasseBeschreibungstatic class
static class
static class
Von Klasse geerbte verschachtelte Klassen/Schnittstellen com.sun.jna.Structure
Structure.ByValue, Structure.FieldOrder, Structure.StructField
-
Feldübersicht
FelderVon Klasse geerbte Felder com.sun.jna.Structure
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic int
compare
(WinNT.LARGE_INTEGER v1, long v2) Compares a LARGE_INTEGER value with along
one.static int
Compares 2 LARGE_INTEGER values - - Note: anull
value is considered greater than any non-null
one (i.e.,null
values are "pushed" to the end of a sorted array / list of values)int
compareTo
(WinNT.LARGE_INTEGER other) getHigh()
High DWORD.getLow()
Low DWORD.long
getValue()
64-bit value.toString()
Ifjna.dump_memory
is true, will include a native memory dump of the Structure's backing memory.Von Klasse geerbte Methoden 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, getFieldList, getFieldOrder, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setStringEncoding, size, sortFields, toArray, toArray, toString, useMemory, useMemory, write, writeField, writeField, writeField
-
Felddetails
-
u
-
-
Konstruktordetails
-
LARGE_INTEGER
public LARGE_INTEGER() -
LARGE_INTEGER
public LARGE_INTEGER(long value)
-
-
Methodendetails
-
getLow
Low DWORD.- Gibt zurück:
- Low DWORD value
-
getHigh
High DWORD.- Gibt zurück:
- High DWORD value
-
getValue
public long getValue()64-bit value.- Gibt zurück:
- The 64-bit value.
-
compareTo
- Angegeben von:
compareTo
in SchnittstelleComparable<WinNT.LARGE_INTEGER>
-
toString
Beschreibung aus Klasse kopiert:Structure
Ifjna.dump_memory
is true, will include a native memory dump of the Structure's backing memory. -
compare
Compares 2 LARGE_INTEGER values - - Note: anull
value is considered greater than any non-null
one (i.e.,null
values are "pushed" to the end of a sorted array / list of values)- Parameter:
v1
- The 1st valuev2
- The 2nd value- Gibt zurück:
- 0 if values are equal (including if both are
null
, negative if 1st value less than 2nd one, positive otherwise. Note: the comparison uses thegetValue()
. - Siehe auch:
-
compare
Compares a LARGE_INTEGER value with along
one. Note: if the LARGE_INTEGER value isnull
then it is consider greater than anylong
value.- Parameter:
v1
- TheWinNT.LARGE_INTEGER
valuev2
- Thelong
value- Gibt zurück:
- 0 if values are equal, negative if 1st value less than 2nd one,
positive otherwise. Note: the comparison uses the
getValue()
. - Siehe auch:
-