org.joda.time.base |
org.joda.time.chrono package
Implementation package providing abstract and base time classes.
Provides abstract implementations of the Readable* interfaces.
The Abstract* classes hold no fields and have no final methods.
They can be used by anyone wanting to implement the interface.
The Base* classes extend the Abstract* classes to provide fields for the
standard way to implement the class.
If you intend to implement a Readable* interface yourself, please consider
extending either the Abstract* or Base* class in this package.
|
Java Source File Name | Type | Comment |
AbstractDateTime.java | Class | AbstractDateTime provides the common behaviour for datetime classes. |
AbstractDuration.java | Class | AbstractDuration provides the common behaviour for duration classes.
This class should generally not be used directly by API users. |
AbstractInstant.java | Class | AbstractInstant provides the common behaviour for instant classes.
This class has no concept of a chronology, all methods work on the
millisecond instant.
This class should generally not be used directly by API users. |
AbstractInterval.java | Class | AbstractInterval provides the common behaviour for time intervals.
This class should generally not be used directly by API users. |
AbstractPartial.java | Class | AbstractPartial provides a standard base implementation of most methods
in the ReadablePartial interface. |
AbstractPeriod.java | Class | AbstractPeriod provides the common behaviour for period classes.
This class should generally not be used directly by API users. |
BaseDateTime.java | Class | BaseDateTime is an abstract implementation of ReadableDateTime that stores
data in long and Chronology fields. |
BaseDuration.java | Class | BaseDuration is an abstract implementation of ReadableDuration that stores
data in a long duration milliseconds field. |
BaseInterval.java | Class | BaseInterval is an abstract implementation of ReadableInterval that stores
data in two long millisecond fields. |
BaseLocal.java | Class | BaseLocal is an abstract implementation of ReadablePartial that
use a local milliseconds internal representation. |
BasePartial.java | Class | BasePartial is an abstract implementation of ReadablePartial that stores
data in array and Chronology fields. |
BasePeriod.java | Class | BasePeriod is an abstract implementation of ReadablePeriod that stores
data in a PeriodType and an int[] . |
BaseSingleFieldPeriod.java | Class | BaseSingleFieldPeriod is an abstract implementation of ReadablePeriod that
manages a single duration field, such as days or minutes. |