Uses of Class
java.time.LocalDate
-
Packages that use LocalDate 软件包 描述 java.sql 提供使用Java编程语言访问和处理存储在数据源(通常是关系数据库)中的数据的API。java.time 日期,时间,瞬间和持续时间的主要API。java.time.chrono 除默认ISO之外的日历系统的通用API。java.time.temporal 使用字段和单位访问日期和时间,以及日期时间调整器。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置javafx.util.converter 此包用于JavaFX的标准字符串转换器。 -
-
Uses of LocalDate in java.sql
Methods in java.sql that return LocalDate Modifier and Type 方法 描述 LocalDate
Date. toLocalDate()
使用这个Date
对象的年,月和日创建LocalDate
实例。Methods in java.sql with parameters of type LocalDate Modifier and Type 方法 描述 static Date
Date. valueOf(LocalDate date)
从LocalDate
对象获取一个Date
的实例,具有与给定的LocalDate
相同的年,月和日的值。 -
Uses of LocalDate in java.time
Fields in java.time declared as LocalDate Modifier and Type Field 描述 static LocalDate
LocalDate. EPOCH
时代年份LocalDate
,'1970-01-01'。static LocalDate
LocalDate. MAX
最大支持LocalDate
,'+ 999999999-12-31'。static LocalDate
LocalDate. MIN
最低支持LocalDate
,'-LocalDate
'。Methods in java.time that return LocalDate Modifier and Type 方法 描述 LocalDate
Year. atDay(int dayOfYear)
今年与今年的合并创造了LocalDate
。LocalDate
YearMonth. atDay(int dayOfMonth)
结合今年的月份,创造一个LocalDate
。LocalDate
YearMonth. atEndOfMonth()
在本月底返回LocalDate
。LocalDate
Year. atMonthDay(MonthDay monthDay)
结合今年与一个月的日子,创造一个LocalDate
。LocalDate
MonthDay. atYear(int year)
结合本月与一年创造LocalDate
。static LocalDate
LocalDate. from(TemporalAccessor temporal)
从时间对象获取一个LocalDate
的实例。LocalDate
LocalDate. minus(long amountToSubtract, TemporalUnit unit)
返回此日期的副本,减去指定的金额。LocalDate
LocalDate. minus(TemporalAmount amountToSubtract)
返回此日期的副本,减去指定的金额。LocalDate
LocalDate. minusDays(long daysToSubtract)
返回此LocalDate
的副本,并减去指定的天数。LocalDate
LocalDate. minusMonths(long monthsToSubtract)
返回此LocalDate
的副本,并减去指定的月数。LocalDate
LocalDate. minusWeeks(long weeksToSubtract)
返回此LocalDate
的副本,并LocalDate
指定的周数。LocalDate
LocalDate. minusYears(long yearsToSubtract)
返回此LocalDate
的副本,并减去指定的年数。static LocalDate
LocalDate. now()
从默认时区的系统时钟获取当前日期。static LocalDate
LocalDate. now(Clock clock)
从指定的时钟获取当前日期。static LocalDate
LocalDate. now(ZoneId zone)
从指定时区的系统时钟获取当前日期。static LocalDate
LocalDate. of(int year, int month, int dayOfMonth)
从一年,一个月和一天获得一个LocalDate
的实例。static LocalDate
LocalDate. of(int year, Month month, int dayOfMonth)
从一年,一个月和一天获得LocalDate
的实例。static LocalDate
LocalDate. ofEpochDay(long epochDay)
从纪元日数获得LocalDate
的实例。static LocalDate
LocalDate. ofInstant(Instant instant, ZoneId zone)
从Instant
和区域ID获取LocalDate
的实例。static LocalDate
LocalDate. ofYearDay(int year, int dayOfYear)
从一年和一年的一年中获得LocalDate
的实例。static LocalDate
LocalDate. parse(CharSequence text)
从2007-12-03
等文本字符串获取LocalDate
的实例。static LocalDate
LocalDate. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串获取LocalDate
的实例。LocalDate
LocalDate. plus(long amountToAdd, TemporalUnit unit)
返回此日期的副本,并添加指定的金额。LocalDate
LocalDate. plus(TemporalAmount amountToAdd)
返回此日期的副本,并添加指定的金额。LocalDate
LocalDate. plusDays(long daysToAdd)
以指定的天数返回此LocalDate
的副本。LocalDate
LocalDate. plusMonths(long monthsToAdd)
返回此LocalDate
的副本,并附加指定的月数。LocalDate
LocalDate. plusWeeks(long weeksToAdd)
返回添加了指定周数的此LocalDate
的副本。LocalDate
LocalDate. plusYears(long yearsToAdd)
以指定的年数返回此LocalDate
的副本。LocalDate
LocalDateTime. toLocalDate()
获得这个日期时间的LocalDate
部分。LocalDate
OffsetDateTime. toLocalDate()
获取此日期时间的LocalDate
部分。LocalDate
ZonedDateTime. toLocalDate()
获取此日期时间的LocalDate
部分。LocalDate
LocalDate. with(TemporalAdjuster adjuster)
返回此日期的调整副本。LocalDate
LocalDate. with(TemporalField field, long newValue)
返回此日期的副本,并将指定的字段设置为新值。LocalDate
LocalDate. withDayOfMonth(int dayOfMonth)
返回这个LocalDate
的副本,并更改日期。LocalDate
LocalDate. withDayOfYear(int dayOfYear)
返回此LocalDate
更改的LocalDate
的副本。LocalDate
LocalDate. withMonth(int month)
返回该LocalDate
的副本。LocalDate
LocalDate. withYear(int year)
返回该LocalDate
的副本。Methods in java.time that return types with arguments of type LocalDate Modifier and Type 方法 描述 Stream<LocalDate>
LocalDate. datesUntil(LocalDate endExclusive)
返回顺序排列的日期流。Stream<LocalDate>
LocalDate. datesUntil(LocalDate endExclusive, Period step)
通过给定的增量步骤返回日期的顺序排序流。Methods in java.time with parameters of type LocalDate Modifier and Type 方法 描述 LocalDateTime
LocalTime. atDate(LocalDate date)
结合这个时间与日期创建一个LocalDateTime
。OffsetDateTime
OffsetTime. atDate(LocalDate date)
结合这个时间与日期来创建一个OffsetDateTime
。static Period
Period. between(LocalDate startDateInclusive, LocalDate endDateExclusive)
获得一个Period
包括两个日期之间的年数,月份和日期。Stream<LocalDate>
LocalDate. datesUntil(LocalDate endExclusive)
返回顺序排列的日期流。Stream<LocalDate>
LocalDate. datesUntil(LocalDate endExclusive, Period step)
通过给定的增量步骤返回日期的顺序排序流。static LocalDateTime
LocalDateTime. of(LocalDate date, LocalTime time)
从日期和时间获取LocalDateTime
的实例。static OffsetDateTime
OffsetDateTime. of(LocalDate date, LocalTime time, ZoneOffset offset)
从日期,时间和偏移量获取OffsetDateTime
的实例。static ZonedDateTime
ZonedDateTime. of(LocalDate date, LocalTime time, ZoneId zone)
从当地的日期和时间获取ZonedDateTime
的实例。long
LocalTime. toEpochSecond(LocalDate date, ZoneOffset offset)
将此LocalTime
转换为1970-01-01T00:00:00Z的时代以来的秒数。long
OffsetTime. toEpochSecond(LocalDate date)
将此OffsetTime
转换为1970-01-01T00:00:00Z的时代以来的秒数。 -
Uses of LocalDate in java.time.chrono
Methods in java.time.chrono that return LocalDate Modifier and Type 方法 描述 LocalDate
IsoChronology. date(int prolepticYear, int month, int dayOfMonth)
从月度,月份和月份月份获取ISO本地日期。LocalDate
IsoChronology. date(Era era, int yearOfEra, int month, int dayOfMonth)
从时代,年龄,月份和月份的时代获得ISO本地日期。LocalDate
IsoChronology. date(TemporalAccessor temporal)
从另一个日期时间对象获取ISO本地日期。LocalDate
IsoChronology. dateEpochDay(long epochDay)
从时代获取ISO本地日期。LocalDate
IsoChronology. dateNow()
从默认时区的系统时钟获取当前的ISO本地日期。LocalDate
IsoChronology. dateNow(Clock clock)
从指定的时钟获取当前的ISO本地日期。LocalDate
IsoChronology. dateNow(ZoneId zone)
从指定时区的系统时钟获取当前的ISO本地日期。LocalDate
IsoChronology. dateYearDay(int prolepticYear, int dayOfYear)
从幼稚年份和日期字段获取ISO本地日期。LocalDate
IsoChronology. dateYearDay(Era era, int yearOfEra, int dayOfYear)
从时代,年龄和日期的领域获得ISO本地日期。LocalDate
IsoChronology. resolveDate(Map<TemporalField,Long> fieldValues, ResolverStyle resolverStyle)
解析时解析为ChronoField
值。 -
Uses of LocalDate in java.time.temporal
Methods in java.time.temporal that return types with arguments of type LocalDate Modifier and Type 方法 描述 static TemporalQuery<LocalDate>
TemporalQueries. localDate()
对于LocalDate
的查询,如果找不到则返回null。Method parameters in java.time.temporal with type arguments of type LocalDate Modifier and Type 方法 描述 static TemporalAdjuster
TemporalAdjusters. ofDateAdjuster(UnaryOperator<LocalDate> dateBasedAdjuster)
获取一个包含日期调整器的TemporalAdjuster
。 -
Uses of LocalDate in javafx.scene.control
Methods in javafx.scene.control that return types with arguments of type LocalDate Modifier and Type 方法 描述 ObjectProperty<StringConverter<LocalDate>>
DatePicker. converterProperty()
将输入文本转换为类型为LocalDate的对象,反之亦然。StringConverter<LocalDate>
DatePicker. getConverter()
获取属性转换器的值。Methods in javafx.scene.control with parameters of type LocalDate Modifier and Type 方法 描述 void
DateCell. updateItem(LocalDate item, boolean empty)
updateItem方法不应该被开发人员调用,但它是开发人员覆盖的最佳方式,以允许它们自定义单元格的视觉效果。Method parameters in javafx.scene.control with type arguments of type LocalDate Modifier and Type 方法 描述 void
DatePicker. setConverter(StringConverter<LocalDate> value)
设置属性转换器的值。Constructors in javafx.scene.control with parameters of type LocalDate Constructor 描述 DatePicker(LocalDate localDate)
创建一个DatePicker实例,并将value
设置为给定日期。 -
Uses of LocalDate in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return types with arguments of type LocalDate Modifier and Type 方法 描述 protected StringConverter<LocalDate>
DatePickerSkin. getConverter()
子类负责获取转换器。 -
Uses of LocalDate in javafx.util.converter
Methods in javafx.util.converter that return LocalDate Modifier and Type 方法 描述 LocalDate
LocalDateStringConverter. fromString(String value)
将提供的字符串转换为由特定转换器定义的对象。Methods in javafx.util.converter with parameters of type LocalDate Modifier and Type 方法 描述 String
LocalDateStringConverter. toString(LocalDate value)
将提供的对象转换为其字符串形式。
-