Uses of Interface
java.time.chrono.Chronology
-
Packages that use Chronology 软件包 描述 java.time.chrono 除默认ISO之外的日历系统的通用API。java.time.format 提供打印和解析日期和时间的类。java.time.temporal 使用字段和单位访问日期和时间,以及日期时间调整器。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.util.converter 此包用于JavaFX的标准字符串转换器。 -
-
Uses of Chronology in java.time.chrono
Classes in java.time.chrono that implement Chronology Modifier and Type Class 描述 class
AbstractChronology
用于组织和识别日期的日历系统的抽象实现。class
HijrahChronology
Hijrah日历是支持伊斯兰教日历的农历。class
IsoChronology
ISO日历系统。class
JapaneseChronology
日本帝国历法系统。class
MinguoChronology
国际日历系统。class
ThaiBuddhistChronology
泰国佛教日历系统。Methods in java.time.chrono that return Chronology Modifier and Type 方法 描述 static Chronology
Chronology. from(TemporalAccessor temporal)
从时间对象获取一个Chronology
的实例。Chronology
ChronoLocalDate. getChronology()
获得这个日期的年表。default Chronology
ChronoLocalDateTime. getChronology()
获得这个日期时间的年表。Chronology
ChronoPeriod. getChronology()
获取定义支持的单位意义的年表。default Chronology
ChronoZonedDateTime. getChronology()
获得这个日期时间的年表。static Chronology
Chronology. of(String id)
从时间序列ID或日历系统类型获取Chronology
的实例。static Chronology
Chronology. ofLocale(Locale locale)
从区域设置获取Chronology
的实例。Methods in java.time.chrono that return types with arguments of type Chronology Modifier and Type 方法 描述 static Set<Chronology>
Chronology. getAvailableChronologies()
返回可用的年表。Methods in java.time.chrono with parameters of type Chronology Modifier and Type 方法 描述 int
AbstractChronology. compareTo(Chronology other)
将这个年表与另一个年表进行比较。int
Chronology. compareTo(Chronology other)
将这个年表与另一个年表进行比较。 -
Uses of Chronology in java.time.format
Methods in java.time.format that return Chronology Modifier and Type 方法 描述 Chronology
DateTimeFormatter. getChronology()
获得在格式化期间使用的压倒一记的年表。Methods in java.time.format with parameters of type Chronology Modifier and Type 方法 描述 static String
DateTimeFormatterBuilder. getLocalizedDateTimePattern(FormatStyle dateStyle, FormatStyle timeStyle, Chronology chrono, Locale locale)
获取区域设置和时间顺序的日期和时间样式的格式模式。DateTimeFormatter
DateTimeFormatter. withChronology(Chronology chrono)
使用新的覆盖年表返回此格式化程序的副本。 -
Uses of Chronology in java.time.temporal
Methods in java.time.temporal that return types with arguments of type Chronology Modifier and Type 方法 描述 static TemporalQuery<Chronology>
TemporalQueries. chronology()
查询Chronology
。 -
Uses of Chronology in javafx.scene.control
Methods in javafx.scene.control that return Chronology Modifier and Type 方法 描述 Chronology
DatePicker. getChronology()
获取物业年表的价值。Methods in javafx.scene.control that return types with arguments of type Chronology Modifier and Type 方法 描述 ObjectProperty<Chronology>
DatePicker. chronologyProperty()
用于在DatePicker控件中解析,显示和选择日期的日历系统。Methods in javafx.scene.control with parameters of type Chronology Modifier and Type 方法 描述 void
DatePicker. setChronology(Chronology value)
设置属性年表的值。 -
Uses of Chronology in javafx.util.converter
Constructors in javafx.util.converter with parameters of type Chronology Constructor 描述 LocalDateStringConverter(FormatStyle dateStyle, Locale locale, Chronology chronology)
创建一个字符串转换LocalDate
个使用默认的格式和语法分析器,它会根据所提供的值FormatStyle
,Locale
,并Chronology
。LocalDateTimeStringConverter(FormatStyle dateStyle, FormatStyle timeStyle, Locale locale, Chronology chronology)
创建StringConverter
为LocalDateTime
使用默认格式化器和解析器,其将基于所提供的值FormatStyle
个 S,Locale
,和Chronology
。
-