Serialized Form
-
Package javax.time
-
Class javax.time.CalendricalException extends java.lang.RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.Duration extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singletons.
-
-
Serialized Fields
-
nanos
int nanos
The number of nanoseconds in the duration, expressed as a fraction of the number of seconds. This is always positive, and never exceeds 999,999,999. -
seconds
long seconds
The number of seconds in the duration.
-
-
Class javax.time.Instant extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singletons.
-
-
Serialized Fields
-
nanos
int nanos
The number of nanoseconds, later along the time-line, from the seconds field. This is always positive, and never exceeds 999,999,999. -
seconds
long seconds
The number of seconds from the epoch of 1970-01-01T00:00:00Z.
-
-
Class javax.time.TAIInstant extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nanos
int nanos
The number of nanoseconds, later along the time-line, from the seconds field. This is always positive, and never exceeds 999,999,999. -
seconds
long seconds
The number of seconds from the epoch of 1958-01-01T00:00:00(TAI).
-
-
Class javax.time.UTCInstant extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
mjDay
long mjDay
The Modified Julian Day, from the epoch of 1858-11-17. -
nanos
long nanos
The number of nanoseconds, later along the time-line, from the MJD field. This is always positive and includes leap seconds. -
rules
UTCRules rules
The leap second rules.
-
-
-
Package javax.time.calendar
-
Class javax.time.calendar.CalendarConversionException extends CalendricalException implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.CalendricalContext extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
checkUnusedFields
boolean checkUnusedFields
Whether to check unused fields. -
dateResolver
DateResolver dateResolver
Whether to use a date resolver for resolving dates. -
strict
boolean strict
Whether to use strict rules.
-
-
Class javax.time.calendar.CalendricalRule extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
chronology
Chronology chronology
The chronology of the rule, not null. -
id
java.lang.String id
The id of the rule, not null. -
name
java.lang.String name
The name of the rule, not null. -
periodRange
PeriodUnit periodRange
The period range, not null. -
periodUnit
PeriodUnit periodUnit
The period unit, not null. -
reified
java.lang.Class<T> reified
The reified class for the generic type.
-
-
Class javax.time.calendar.CalendricalRuleException extends CalendricalException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
rule
CalendricalRule<?> rule
The rule that caused the exception.
-
-
Class javax.time.calendar.DateTimeFieldRule extends CalendricalRule<T> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
maximumValue
int maximumValue
The maximum value for the field. -
minimumValue
int minimumValue
The minimum value for the field.
-
-
Class javax.time.calendar.DateTimeFields extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve() throws java.io.ObjectStreamException
Ensure EMPTY singleton.- Throws:
java.io.ObjectStreamException
- if an error occurs
-
-
Serialized Fields
-
fieldValueMap
java.util.TreeMap<DateTimeFieldRule<?>,java.lang.Integer> fieldValueMap
The date time map, never null, may be empty.
-
-
Class javax.time.calendar.IllegalCalendarFieldValueException extends CalendricalRuleException implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.InvalidCalendarFieldException extends CalendricalRuleException implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.ISOChronology extends Chronology implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singleton.
-
-
Class javax.time.calendar.LocalDate extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
day
int day
The day-of-month. -
month
MonthOfYear month
The month-of-year, not null. -
year
int year
The year.
-
-
Class javax.time.calendar.LocalDateTime extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.LocalTime extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Handle singletons on deserialization.
-
-
Serialized Fields
-
hour
byte hour
The hour. -
minute
byte minute
The minute. -
nano
int nano
The nanosecond. -
second
byte second
The second.
-
-
Class javax.time.calendar.MonthDay extends java.lang.Object implements Serializable
- serialVersionUID:
- -254395108L
-
Serialized Fields
-
day
int day
The day-of-month. -
month
MonthOfYear month
The month-of-year, not null.
-
-
Class javax.time.calendar.OffsetDate extends java.lang.Object implements Serializable
- serialVersionUID:
- -3618963189L
-
Serialized Fields
-
date
LocalDate date
The date. -
offset
ZoneOffset offset
The zone offset.
-
-
Class javax.time.calendar.OffsetDateTime extends java.lang.Object implements Serializable
- serialVersionUID:
- -456761901L
-
Serialized Fields
-
dateTime
LocalDateTime dateTime
The local date-time. -
offset
ZoneOffset offset
The zone offset.
-
-
Class javax.time.calendar.OffsetTime extends java.lang.Object implements Serializable
- serialVersionUID:
- -1751032571L
-
Serialized Fields
-
offset
ZoneOffset offset
The zone offset from UTC, never null. -
time
LocalTime time
The local time, never null.
-
-
Class javax.time.calendar.Period extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singletons.
-
-
Serialized Fields
-
days
int days
The number of days. -
hours
int hours
The number of hours. -
minutes
int minutes
The number of minutes. -
months
int months
The number of months. -
nanos
long nanos
The number of nanoseconds. -
seconds
int seconds
The number of seconds. -
years
int years
The number of years.
-
-
Class javax.time.calendar.PeriodField extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
amount
long amount
The amount of the period. -
unit
PeriodUnit unit
The unit the period is measured in.
-
-
Class javax.time.calendar.PeriodFields extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singletons.
-
-
Serialized Fields
-
unitFieldMap
java.util.TreeMap<PeriodUnit,PeriodField> unitFieldMap
The map of periods.
-
-
Class javax.time.calendar.PeriodUnit extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.TimeZone extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.UnsupportedRuleException extends CalendricalRuleException implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.Year extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
year
int year
The year being represented.
-
-
Class javax.time.calendar.YearMonth extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
month
MonthOfYear month
The month-of-year, not null. -
year
int year
The year.
-
-
Class javax.time.calendar.ZonedDateTime extends java.lang.Object implements Serializable
- serialVersionUID:
- -456761901L
-
Serialized Fields
-
dateTime
OffsetDateTime dateTime
The offset date-time. -
zone
TimeZone zone
The time-zone.
-
-
Class javax.time.calendar.ZoneOffset extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singletons.
-
-
Serialized Fields
-
amountSeconds
int amountSeconds
The offset in seconds.
-
-
-
Package javax.time.calendar.format
-
Class javax.time.calendar.format.CalendricalParseException extends CalendricalException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorIndex
int errorIndex
The error index in the text. -
parsedString
java.lang.String parsedString
The text that was being parsed.
-
-
Class javax.time.calendar.format.CalendricalPrintException extends CalendricalException implements Serializable
- serialVersionUID:
- 1L
-
Class javax.time.calendar.format.CalendricalPrintFieldException extends CalendricalPrintException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
rule
CalendricalRule<?> rule
The rule that caused the exception. -
value
java.lang.Integer value
The value of the field that caused the exception.
-
-
-
Package javax.time.calendar.zone
-
Class javax.time.calendar.zone.ZoneOffsetTransition extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
writeReplace
private java.lang.Object writeReplace()
Uses a serialization delegate.
-
-
Serialized Fields
-
transition
OffsetDateTime transition
The transition date-time with the offset before the transition. -
transitionAfter
OffsetDateTime transitionAfter
The transition date-time with the offset after the transition.
-
-
Class javax.time.calendar.zone.ZoneOffsetTransitionRule extends java.lang.Object implements Serializable
- serialVersionUID:
- -32352886665458L
-
Serialization Methods
-
writeReplace
private java.lang.Object writeReplace()
Uses a serialization delegate.
-
-
Serialized Fields
-
dom
byte dom
The day-of-month of the month-day of the cutover week. If positive, it is the start of the week where the cutover can occur. If negative, it represents the end of the week where cutover can occur. The value is the number of days from the end of the month, such that-1
is the last day of the month,-2
is the second to last day, and so on. -
dow
DayOfWeek dow
The cutover day-of-week, null to retain the day-of-month. -
month
MonthOfYear month
The month of the month-day of the first day of the cutover week. The actual date will be adjusted by the dowChange field. -
offsetAfter
ZoneOffset offsetAfter
The offset after the cutover. -
offsetBefore
ZoneOffset offsetBefore
The offset before the cutover. -
standardOffset
ZoneOffset standardOffset
The standard offset at the cutover. -
time
LocalTime time
The cutover time in the 'before' offset. -
timeDefinition
ZoneRulesBuilder.TimeDefinition timeDefinition
The definition of how the local time should be interpreted. -
timeEndOfDay
boolean timeEndOfDay
Whether the cutover time is midnight at the end of day.
-
-
-
Package javax.time.i18n
-
Class javax.time.i18n.CopticChronology extends Chronology implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singleton.
-
-
Class javax.time.i18n.CopticDate extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Replaces the date instance from the stream with a valid one.
-
-
Serialized Fields
-
epochDays
int epochDays
The Coptic epoch day count, 0001-01-01 = 0.
-
-
Class javax.time.i18n.HistoricChronology extends Chronology implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cutover
LocalDate cutover
The cutover from Julian to Gregorian.
-
-
Class javax.time.i18n.HistoricDate extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
chrono
HistoricChronology chrono
The cutover between the Julian and Gregorian calendar systems.
-
-
Class javax.time.i18n.JulianChronology extends Chronology implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private java.lang.Object readResolve()
Resolves singleton.
-
-