BaseChronology provides a skeleton implementation for chronology
classes.
BaseDateTime is an abstract implementation of ReadableDateTime that stores
data in long
and Chronology
fields.
Constructs an instance set to the current system millisecond time
using ISOChronology
in the default time zone.
Constructs an instance from datetime field values
using ISOChronology
in the default time zone.
Constructs an instance from datetime field values
using the specified chronology.
Constructs an instance from datetime field values
using ISOChronology
in the specified time zone.
Constructs an instance set to the milliseconds from 1970-01-01T00:00:00Z
using ISOChronology
in the default time zone.
Constructs an instance set to the milliseconds from 1970-01-01T00:00:00Z
using the specified chronology.
Constructs an instance set to the milliseconds from 1970-01-01T00:00:00Z
using ISOChronology
in the specified time zone.
Constructs an instance from an Object that represents a datetime,
using the specified chronology.
Constructs an instance from an Object that represents a datetime,
forcing the time zone to that specified.
Constructs an instance set to the current system millisecond time
using the specified chronology.
Constructs an instance set to the current system millisecond time
using ISOChronology
in the specified time zone.
BaseDateTimeField provides the common behaviour for DateTimeField
implementations.
BaseDuration is an abstract implementation of ReadableDuration that stores
data in a long
duration milliseconds field.
Creates a duration from the given millisecond duration.
Creates a duration from the given interval endpoints.
Creates a duration from the given interval endpoints.
BaseDurationField provides the common behaviour for DurationField
implementations.
BaseInterval is an abstract implementation of ReadableInterval that stores
data in two long
millisecond fields.
Constructs an interval from a start and end instant.
Constructs a time interval converting or copying from another object
that describes an interval.
Constructs an interval from a millisecond duration and an end instant.
Constructs an interval from a start instant and a duration.
Constructs an interval from a start and end instant.
Constructs an interval from a start instant and a time period.
Constructs an interval from a time period and an end instant.
BaseLocal is an abstract implementation of ReadablePartial that
use a local milliseconds internal representation.
Constructs a partial with the current time, using ISOChronology in
the default zone to extract the fields.
BasePartial is an abstract implementation of ReadablePartial that stores
data in array and Chronology
fields.
Constructs a partial with the current time, using ISOChronology in
the default zone to extract the fields.
Constructs a partial with specified time field values and chronology.
Constructs a partial extracting the partial fields from the specified
milliseconds using the ISOChronology in the default zone.
Constructs a partial extracting the partial fields from the specified
milliseconds using the chronology provided.
Constructs a partial from an Object that represents a time, using the
specified chronology.
Constructs a partial from an Object that represents a time, using the
specified chronology.
Private constructor to be used by subclasses only which performs no validation.
Private constructor to be used by subclasses only which performs no validation.
Constructs a partial with the current time, using the specified chronology
and zone to extract the fields.
BasePeriod is an abstract implementation of ReadablePeriod that stores
data in a PeriodType
and an int[]
.
Creates a period from a set of field values.
Constructor used when we trust ourselves.
Creates a period from the given interval endpoints.
Creates a period from the given millisecond duration, which is only really
suitable for durations less than one day.
Creates a period from the given duration and end point.
Creates a period from the given start point and duration.
Creates a period from the given interval endpoints.
Creates a period from the given duration and end point.
BaseSingleFieldPeriod is an abstract implementation of ReadablePeriod that
manages a single duration field, such as days or minutes.
Creates a new instance representing the specified period.
Returns a basic formatter for a full date as four digit year, two digit
month of year, and two digit day of month (yyyyMMdd).
Returns a basic formatter that combines a basic date and time, separated
by a 'T' (yyyyMMdd'T'HHmmss.SSSZ).
Returns a basic formatter that combines a basic date and time without millis,
separated by a 'T' (yyyyMMdd'T'HHmmssZ).
Returns a formatter for a full ordinal date, using a four
digit year and three digit dayOfYear (yyyyDDD).
Returns a formatter for a full ordinal date and time, using a four
digit year and three digit dayOfYear (yyyyDDD'T'HHmmss.SSSZ).
Returns a formatter for a full ordinal date and time without millis,
using a four digit year and three digit dayOfYear (yyyyDDD'T'HHmmssZ).
Returns a basic formatter for a two digit hour of day, two digit minute
of hour, two digit second of minute, three digit millis, and time zone
offset (HHmmss.SSSZ).
Returns a basic formatter for a two digit hour of day, two digit minute
of hour, two digit second of minute, and time zone offset (HHmmssZ).
Returns a basic formatter for a two digit hour of day, two digit minute
of hour, two digit second of minute, three digit millis, and time zone
offset prefixed by 'T' ('T'HHmmss.SSSZ).
Returns a basic formatter for a two digit hour of day, two digit minute
of hour, two digit second of minute, and time zone offset prefixed by 'T'
('T'HHmmssZ).
Returns a basic formatter for a full date as four digit weekyear, two
digit week of weekyear, and one digit day of week (xxxx'W'wwe).
Returns a basic formatter that combines a basic weekyear date and time,
separated by a 'T' (xxxx'W'wwe'T'HHmmss.SSSZ).
Returns a basic formatter that combines a basic weekyear date and time
without millis, separated by a 'T' (xxxx'W'wwe'T'HHmmssZ).
Constant (0) representing BC, years before zero (from Calendar)
Alternative constant (0) representing BCE, Before Common Era (secular)
Constant value for 'Buddhist Era', equivalent to the value returned
for AD/CE.
Calculates the number of whole units between the two specified datetimes.
Calculates the number of whole units between the two specified partial datetimes.
A chronology that matches the BuddhistCalendar class supplied by Sun.