Uses of Class
org.threeten.bp.chrono.Chronology
-
Packages that use Chronology Package Description org.threeten.bp The main API for dates, times, instants, and durations.org.threeten.bp.chrono Support for calendar systems other than the default ISO.org.threeten.bp.format Provides classes to print and parse dates and times.org.threeten.bp.temporal Access to date and time using fields and units. -
-
Uses of Chronology in org.threeten.bp
Methods in org.threeten.bp that return Chronology Modifier and Type Method Description ChronologyPeriod. getChronology() -
Uses of Chronology in org.threeten.bp.chrono
Subclasses of Chronology in org.threeten.bp.chrono Modifier and Type Class Description classAbstractChronologyAn abstract implementation ofChronology.classHijrahChronologyThe Hijrah calendar system.classIsoChronologyThe ISO calendar system.classJapaneseChronologyThe Japanese Imperial calendar system.classMinguoChronologyThe Minguo calendar system.classThaiBuddhistChronologyThe Thai Buddhist calendar system.Fields in org.threeten.bp.chrono declared as Chronology Modifier and Type Field Description private ChronologyChronoPeriodImpl. chronologyFields in org.threeten.bp.chrono with type parameters of type Chronology Modifier and Type Field Description private static java.util.concurrent.ConcurrentHashMap<java.lang.String,Chronology>Chronology. CHRONOS_BY_IDMap of available calendars by ID.private static java.util.concurrent.ConcurrentHashMap<java.lang.String,Chronology>Chronology. CHRONOS_BY_TYPEMap of available calendars by calendar type.static TemporalQuery<Chronology>Chronology. FROMSimulate JDK 8 method reference Chronology::from.Methods in org.threeten.bp.chrono that return Chronology Modifier and Type Method Description static ChronologyChronology. from(TemporalAccessor temporal)Obtains an instance ofChronologyfrom a temporal object.abstract ChronologyChronoLocalDate. getChronology()Gets the chronology of this date.ChronologyChronoLocalDateTime. getChronology()Gets the chronology of this date-time.abstract ChronologyChronoPeriod. getChronology()Gets the chronology that defines the meaning of the supported units.ChronologyChronoPeriodImpl. getChronology()ChronologyChronoZonedDateTime. getChronology()Gets the chronology of this date-time.static ChronologyChronology. of(java.lang.String id)Obtains an instance ofChronologyfrom a chronology ID or calendar system type.static ChronologyChronology. ofLocale(java.util.Locale locale)Obtains an instance ofChronologyfrom a locale.(package private) static ChronologyChronology. readExternal(java.io.DataInput in)Methods in org.threeten.bp.chrono that return types with arguments of type Chronology Modifier and Type Method Description static java.util.Set<Chronology>Chronology. getAvailableChronologies()Returns the available chronologies.Methods in org.threeten.bp.chrono with parameters of type Chronology Modifier and Type Method Description intChronology. compareTo(Chronology other)Compares this chronology to another chronology.(package private) static <R extends ChronoLocalDate>
ChronoZonedDateTimeImpl<R>ChronoZonedDateTimeImpl. ofInstant(Chronology chrono, Instant instant, ZoneId zone)Obtains an instance from an instant using the specified time-zone.private static voidChronology. register(Chronology chrono)Constructors in org.threeten.bp.chrono with parameters of type Chronology Constructor Description ChronoPeriodImpl(Chronology chronology, int years, int months, int days) -
Uses of Chronology in org.threeten.bp.format
Fields in org.threeten.bp.format declared as Chronology Modifier and Type Field Description (package private) ChronologyDateTimeBuilder. chronoThe chronology.private ChronologyDateTimeFormatter. chronoThe chronology to use for formatting, null for no override.(package private) ChronologyDateTimeParseContext.Parsed. chronoprivate ChronologyDateTimeParseContext. overrideChronologyThe override chronology.Methods in org.threeten.bp.format that return Chronology Modifier and Type Method Description ChronologyDateTimeFormatter. getChronology()Gets the overriding chronology to be used during formatting.(package private) ChronologyDateTimeParseContext. getEffectiveChronology()Gets the effective chronology during parsing.Methods in org.threeten.bp.format with parameters of type Chronology Modifier and Type Method Description private DateTimeFormatterDateTimeFormatterBuilder.LocalizedPrinterParser. formatter(java.util.Locale locale, Chronology chrono)Gets the formatter to use.abstract DateTimeFormatterDateTimeFormatStyleProvider. getFormatter(FormatStyle dateStyle, FormatStyle timeStyle, Chronology chrono, java.util.Locale locale)Gets a localized date, time or date-time formatter.DateTimeFormatterSimpleDateTimeFormatStyleProvider. getFormatter(FormatStyle dateStyle, FormatStyle timeStyle, Chronology chrono, java.util.Locale locale)static java.lang.StringDateTimeFormatterBuilder. 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.(package private) voidDateTimeParseContext. setParsed(Chronology chrono)Stores the parsed chronology.DateTimeFormatterDateTimeFormatter. withChronology(Chronology chrono)Returns a copy of this formatter with a new override chronology.Constructors in org.threeten.bp.format with parameters of type Chronology Constructor Description DateTimeFormatter(DateTimeFormatterBuilder.CompositePrinterParser printerParser, java.util.Locale locale, DecimalStyle decimalStyle, ResolverStyle resolverStyle, java.util.Set<TemporalField> resolverFields, Chronology chrono, ZoneId zone)Constructor.DateTimeParseContext(java.util.Locale locale, DecimalStyle symbols, Chronology chronology) -
Uses of Chronology in org.threeten.bp.temporal
Fields in org.threeten.bp.temporal with type parameters of type Chronology Modifier and Type Field Description (package private) static TemporalQuery<Chronology>TemporalQueries. CHRONOMethods in org.threeten.bp.temporal that return types with arguments of type Chronology Modifier and Type Method Description static TemporalQuery<Chronology>TemporalQueries. chronology()A query for theChronology.
-