Package com.sun.jna.platform.win32
Class WinNT.LARGE_INTEGER
java.lang.Object
com.sun.jna.Structure
com.sun.jna.platform.win32.WinNT.LARGE_INTEGER
- All Implemented Interfaces:
- Comparable<WinNT.LARGE_INTEGER>
- Direct Known Subclasses:
- WinNT.LARGE_INTEGER.ByReference
- Enclosing interface:
- WinNT
@FieldOrder("u")
public static class WinNT.LARGE_INTEGER
extends Structure
implements Comparable<WinNT.LARGE_INTEGER>
A 64-bit integer;
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic classNested classes/interfaces inherited from class com.sun.jna.StructureStructure.ByValue, Structure.FieldOrder, Structure.StructField
- 
Field SummaryFieldsFields inherited from class com.sun.jna.StructureALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic intcompare(WinNT.LARGE_INTEGER v1, long v2) Compares a LARGE_INTEGER value with alongone.static intCompares 2 LARGE_INTEGER values - - Note: anullvalue is considered greater than any non-nullone (i.e.,nullvalues are "pushed" to the end of a sorted array / list of values)intcompareTo(WinNT.LARGE_INTEGER other) getHigh()High DWORD.getLow()Low DWORD.longgetValue()64-bit value.toString()Ifjna.dump_memoryis true, will include a native memory dump of the Structure's backing memory.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, 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
- 
Field Details- 
u
 
- 
- 
Constructor Details- 
LARGE_INTEGERpublic LARGE_INTEGER()
- 
LARGE_INTEGERpublic LARGE_INTEGER(long value) 
 
- 
- 
Method Details- 
getLowLow DWORD.- Returns:
- Low DWORD value
 
- 
getHighHigh DWORD.- Returns:
- High DWORD value
 
- 
getValuepublic long getValue()64-bit value.- Returns:
- The 64-bit value.
 
- 
compareTo- Specified by:
- compareToin interface- Comparable<WinNT.LARGE_INTEGER>
 
- 
toStringDescription copied from class:StructureIfjna.dump_memoryis true, will include a native memory dump of the Structure's backing memory.
- 
compareCompares 2 LARGE_INTEGER values - - Note: anullvalue is considered greater than any non-nullone (i.e.,nullvalues are "pushed" to the end of a sorted array / list of values)- Parameters:
- v1- The 1st value
- v2- The 2nd value
- Returns:
- 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().
- See Also:
 
- 
compareCompares a LARGE_INTEGER value with alongone. Note: if the LARGE_INTEGER value isnullthen it is consider greater than anylongvalue.- Parameters:
- v1- The- WinNT.LARGE_INTEGERvalue
- v2- The- longvalue
- Returns:
- 0 if values are equal, negative if 1st value less than 2nd one,
 positive otherwise. Note: the comparison uses the getValue().
- See Also:
 
 
-