public class ParsedInstant extends Object
AbstractInstantHandler| Modifier and Type | Field and Description |
|---|---|
int |
days
Day of the month: 01-28, 01-29, 01-30, 01-31 based on
month/year.
|
int |
hours
Hours of the day: 00-23.
|
int |
minutes
Minutes of the hour: 00-59.
|
int |
months
Month of the year: 01-12.
|
int |
nanoseconds
Nanoseconds of the second: 0-999999999.
|
int |
offsetHours
The whole hour component of the time zone offset: [0-23].
|
int |
offsetMinutes
The minute component of the time zone offset: [0-59].
|
int |
offsetSign
The sign of the timezone offset as follows:
|
int |
seconds
Seconds of the minute: 00-58, 00-59, 00-60 based on leap second
rules.
|
int |
years
The year: -9999-9999.
|
| Constructor and Description |
|---|
ParsedInstant(int years,
int months,
int days,
int hours,
int minutes,
int seconds,
int nanoseconds,
int offsetSign,
int offsetHours,
int offsetMinutes) |
public final int years
public final int months
public final int days
public final int hours
public final int minutes
public final int seconds
public final int nanoseconds
public final int offsetSign
-1 for the sign "-"
+1 for the sign "+"
0 when non-numeric offset "Z" is given
Defaults to 0 if missing.public final int offsetHours
public final int offsetMinutes
Copyright © 2019. All rights reserved.