public static class WinBase.SYSTEMTIME extends Structure
Structure.ByReference, Structure.ByValue, Structure.StructField
Modifier and Type | Field and Description |
---|---|
short |
wDay |
short |
wDayOfWeek |
short |
wHour |
short |
wMilliseconds |
short |
wMinute |
short |
wMonth |
short |
wSecond |
short |
wYear |
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor and Description |
---|
SYSTEMTIME() |
SYSTEMTIME(Calendar cal) |
SYSTEMTIME(Date date) |
SYSTEMTIME(long timestamp) |
Modifier and Type | Method and Description |
---|---|
void |
fromCalendar(Calendar cal) |
protected List<String> |
getFieldOrder()
Return this Structure's field names in their proper order.
|
Calendar |
toCalendar() |
String |
toString()
If
jna.dump_memory is true, will include a native memory dump
of the Structure's backing memory. |
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, useMemory, useMemory, write, writeField, writeField, writeField
public short wYear
public short wMonth
public short wDayOfWeek
public short wDay
public short wHour
public short wMinute
public short wSecond
public short wMilliseconds
public SYSTEMTIME()
public SYSTEMTIME(Date date)
public SYSTEMTIME(long timestamp)
public SYSTEMTIME(Calendar cal)
public void fromCalendar(Calendar cal)
public Calendar toCalendar()
protected List<String> getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class Structure