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