| Package | Description |
|---|---|
| java.time |
The main API for dates, times, instants, and durations.
|
| java.time.chrono |
Support for calendar systems other than the default ISO.
|
| java.time.format |
Provides classes to print and parse dates and times.
|
| java.time.temporal |
| Modifier and Type | Method and Description |
|---|---|
Chronology |
Period.getChronology() |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractChronology
An abstract implementation of
Chronology. |
class |
HijrahChronology
The Hijrah calendar system.
|
class |
IsoChronology
The ISO calendar system.
|
class |
JapaneseChronology
The Japanese Imperial calendar system.
|
class |
MinguoChronology
The Minguo calendar system.
|
class |
ThaiBuddhistChronology
The Thai Buddhist calendar system.
|
| Modifier and Type | Field and Description |
|---|---|
static TemporalQuery<Chronology> |
Chronology.FROM
Simulate JDK 8 method reference Chronology::from.
|
| Modifier and Type | Method and Description |
|---|---|
static Chronology |
Chronology.from(TemporalAccessor temporal)
Obtains an instance of
Chronology from a temporal object. |
Chronology |
ChronoZonedDateTime.getChronology()
Gets the chronology of this date-time.
|
abstract Chronology |
ChronoPeriod.getChronology()
Gets the chronology that defines the meaning of the supported units.
|
Chronology |
ChronoLocalDateTime.getChronology()
Gets the chronology of this date-time.
|
abstract Chronology |
ChronoLocalDate.getChronology()
Gets the chronology of this date.
|
static Chronology |
Chronology.of(java.lang.String id)
Obtains an instance of
Chronology from a chronology ID or
calendar system type. |
static Chronology |
Chronology.ofLocale(java.util.Locale locale)
Obtains an instance of
Chronology from a locale. |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Set<Chronology> |
Chronology.getAvailableChronologies()
Returns the available chronologies.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Chronology.compareTo(Chronology other)
Compares this chronology to another chronology.
|
| Modifier and Type | Method and Description |
|---|---|
Chronology |
DateTimeFormatter.getChronology()
Gets the overriding chronology to be used during formatting.
|
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
DateTimeFormatterBuilder.getLocalizedDateTimePattern(FormatStyle dateStyle,
FormatStyle timeStyle,
Chronology chrono,
java.util.Locale locale)
Gets the formatting pattern for date and time styles for a locale and chronology.
|
DateTimeFormatter |
DateTimeFormatter.withChronology(Chronology chrono)
Returns a copy of this formatter with a new override chronology.
|
| Modifier and Type | Method and Description |
|---|---|
static TemporalQuery<Chronology> |
TemporalQueries.chronology()
A query for the
Chronology. |
Copyright © 2014. All Rights Reserved.