public class SystemTime
extends java.lang.Object
 
 typedef struct _SYSTEMTIME {
  WORD wYear;
  WORD wMonth;
  WORD wDayOfWeek;
  WORD wDay;
  WORD wHour;
  WORD wMinute;
  WORD wSecond;
  WORD wMilliseconds;
 } SYSTEMTIME,
 *PSYSTEMTIME;
 | Modifier and Type | Field and Description | 
|---|---|
int | 
day  | 
int | 
dayOfWeek  | 
int | 
hour  | 
int | 
minute  | 
int | 
month  | 
int | 
ms  | 
int | 
second  | 
int | 
year  | 
| Constructor and Description | 
|---|
SystemTime(int year,
          int month,
          int dayOfWeek,
          int day,
          int hour,
          int minute,
          int second,
          int ms)  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(java.lang.Object obj)  | 
int | 
hashCode()  | 
static SystemTime | 
of(io.netty.buffer.ByteBuf systime)  | 
io.vertx.core.json.JsonObject | 
toJson()  | 
java.lang.String | 
toString()  | 
void | 
writeTo(io.netty.buffer.ByteBuf f)  | 
public final int year
public final int month
public final int dayOfWeek
public final int day
public final int hour
public final int minute
public final int second
public final int ms
public SystemTime(int year,
                  int month,
                  int dayOfWeek,
                  int day,
                  int hour,
                  int minute,
                  int second,
                  int ms)
public static SystemTime of(io.netty.buffer.ByteBuf systime)
public io.vertx.core.json.JsonObject toJson()
public void writeTo(io.netty.buffer.ByteBuf f)
public java.lang.String toString()
toString in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.ObjectCopyright © 2023. All Rights Reserved.