java.time.LocalTime类
精华
小牛编辑
166浏览
2023-03-14
java.time.LocalTime
类表示ISO-8601日历系统中没有时区的时间,例如10:15:30
。
类声明
以下是java.time.LocalTime
类的声明 -
public final class LocalTime
extends Object
implements Temporal, TemporalAdjuster, Comparable<LocalDate>, Serializable
字段
以下是java.time.LocalTime
类的字段 -
static LocalTime MAX
- 支持的最大LocalTime,'23:59:59.999999999'
。static LocalTime MIN
- 支持的最小LocalTime,'00:00'
。static LocalTime MIDNIGHT
- 当天开始的午夜时间'00:00'
。static LocalTime NOON
- 中午的时间,'12:00'
。
类方法
编号 | 方法 | 描述 |
---|---|---|
1 | Temporal adjustInto(Temporal temporal) | 调整指定Temporal对象以使其具有与此对象相同的日期和时间。 |
2 | LocalDateTime atDate(LocalDate date) | 将此时间与日期相结合以创建LocalDateTime。 |
3 | OffsetDateTime atOffset(ZoneOffset offset) | 将此时间与偏移时间相结合以创建OffsetDateTime 。 |
4 | int compareTo(LocalTime other) | 这个时间与另一个时间比较。 |
5 | boolean equals(Object obj) | 检查此时间是否等于另一个时间。 |
6 | String format(DateTimeFormatter formatter) | 这次使用指定的格式化程序格式化。 |
7 | static LocalTime from(TemporalAccessor temporal) | 从temporal 对象获取LocalTime 的实例。 |
8 | int get(TemporalField field) | 从此时间获取指定字段的值作为int 值。 |
9 | int getHour() | 获取当日时间字段。 |
10 | long getLong(TemporalField field) | 从此时间获取指定字段的long 值。 |
11 | int getMinute() | 获取分钟字段的值。 |
12 | int getNano() | 获取纳秒字段的值。 |
13 | int getSecond() | 获取秒钟字段的值。 |
14 | int hashCode() | 时间的哈希码 |
15 | boolean isAfter(LocalTime other) | 检查此时间是否在指定时间之后。 |
16 | boolean isBefore(LocalTime other) | 检查此时间是否在指定时间之前。 |
17 | boolean isSupported(TemporalField field) | 检查是否支持指定的字段。 |
18 | boolean isSupported(TemporalUnit unit) | 检查指定的单元是否受支持。 |
19 | LocalTime minus(long amountToSubtract, TemporalUnit unit) | 返回此时间的副本,并减去指定的数量。 |
20 | LocalTime minus(TemporalAmount amountToSubtract) | 返回此时间的副本,并减去指定的数量。 |
21 | LocalTime minusHours(long hoursToSubtract) | 返回此LocalTime 的副本,并减去指定的小时数。 |
22 | LocalTime minusMinutes(long minutesToSubtract) | 返回此LocalTime 的副本,并减去指定的分钟数。 |
23 | LocalTime minusNanos(long nanos) | 返回此LocalTime 的副本,并减去指定的纳秒数。 |
24 | LocalTime minusSeconds(long seconds) | 返回此LocalTime 的副本,并减去指定的秒数。 |
25 | static LocalTime now() | 在默认时区中从系统时钟获取当前时间。 |
26 | static LocalTime now(Clock clock) | 从指定的时钟获得当前时间。 |
27 | static LocalTime now(ZoneId zone) | 从指定时区的系统时钟获取当前时间。 |
28 | static LocalTime of(int hour, int minute) | 从指定小时分钟获得LocalTime 的实例。 |
29 | static LocalTime of(int hour, int minute, int second) | 从指定小时,分钟和秒钟获取LocalTime 的实例。 |
30 | static LocalTime of(int hour, int minute, int second, int nanoOfSecond) | 从指定小时,分钟,秒和纳秒获得LocalTime 的实例。 |
31 | static LocalTime ofNanoOfDay(long nanoOfDay) | 从一天的纳米值获得LocalTime 的实例。 |
32 | static LocalTime ofSecondOfDay(long secondOfDay) | 从一天的秒值获取LocalTime 的实例。 |
33 | static LocalTime parse(CharSequence text) | 从文本字符串中获取LocalTime 的实例,例如2007-12-03T10:15:30 。 |
34 | static LocalTime parse(CharSequence text, DateTimeFormatter formatter) | 使用特定格式化程序从文本字符串中获取LocalTime的实例。 |
35 | LocalTime plus(long amountToAdd, TemporalUnit unit) | 返回此时间的副本,并添加指定的数量。 |
36 | LocalTime plus(TemporalAmount amountToAdd) | 返回此时间的副本,并添加指定的数量。 |
37 | LocalTime plusHours(long hoursToAdd) | 返回此LocalTime 的副本,并添加指定的小时数。 |
38 | LocalTime plusMinutes(long minutesToAdd) | 返回此LocalTime 的副本,并添加指定的分钟数。 |
39 | LocalTime plusNanos(long nanos) | 返回此LocalTime 的副本,并添加指定的纳秒数。 |
40 | LocalTime plusSeconds(long seconds) | 返回此LocalTime 的副本,并添加指定的秒数。 |
41 | R query(TemporalQuery query) | 使用指定的查询进行查询的时间。 |
42 | ValueRange range(TemporalField field) | 获取指定字段的有效值范围。 |
43 | long toNanoOfDay() | 提取时间为一天的纳秒数,从0 到24 * 60 * 60 * 1,000,000,000 - 1 。 |
44 | int toSecondOfDay() | 将时间提取为一天中的秒数,从0 到24 * 60 * 60 - 1 。 |
45 | String toString() | 将此日期输出为String ,例如10:15 。 |
46 | LocalTime truncatedTo(TemporalUnit unit) | 返回此LocalTime 的副本,并截断时间。 |
47 | long until(Temporal endExclusive, TemporalUnit unit) | 根据指定的单位计算到另一个时间的时间量。 |
48 | LocalTime with(TemporalAdjuster adjuster) | 返回此时的调整副本。 |
49 | LocalTime with(TemporalField field, long newValue) | 返回此时间的副本,并将指定字段设置为新值。 |
50 | LocalTime withHour(int hour) | 返回此LocalTime 的副本,并更改日期。 |
51 | LocalTime withMinute(int minute) | 返回此LocalTime 的副本,并更改了分钟。 |
52 | LocalTime withNano(int nanoOfSecond) | 返回此LocalTime 的副本,并更改了纳秒。 |
53 | LocalTime withSecond(int second) | 返回此LocalTime 的副本,并更改秒钟。 |
方法继承
该类继承以下类中的方法 -
Java.lang.Object