Uses of Class
java.time.Instant
-
Packages that use Instant 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.nio.file.attribute 提供访问文件和文件系统属性的接口和类。java.sql 提供使用Java编程语言访问和处理存储在数据源(通常是关系数据库)中的数据的API。java.time 日期,时间,瞬间和持续时间的主要API。java.time.chrono 除默认ISO之外的日历系统的通用API。java.time.zone 支持时区及其规则。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.logging 提供Java¢2平台核心日志记录工具的类和接口。 -
-
Uses of Instant in java.lang
Methods in java.lang that return types with arguments of type Instant Modifier and Type 方法 描述 Optional<Instant>
ProcessHandle.Info. startInstant()
返回进程的开始时间。 -
Uses of Instant in java.nio.file.attribute
Methods in java.nio.file.attribute that return Instant Modifier and Type 方法 描述 Instant
FileTime. toInstant()
将此FileTime
对象转换为Instant
。Methods in java.nio.file.attribute with parameters of type Instant Modifier and Type 方法 描述 static FileTime
FileTime. from(Instant instant)
返回一个FileTime
表示与所提供的Instant
对象相同的时间点值。 -
Uses of Instant in java.sql
Methods in java.sql that return Instant Modifier and Type 方法 描述 Instant
Date. toInstant()
此方法总是引发UnsupportedOperationException,因为SQLDate
值没有时间组件,所以不应该使用它。Instant
Time. toInstant()
此方法总是引发UnsupportedOperationException,因为SQLTime
值没有日期组件,所以不应该使用它。Instant
Timestamp. toInstant()
将此Timestamp
对象转换为Instant
。Methods in java.sql with parameters of type Instant Modifier and Type 方法 描述 static Timestamp
Timestamp. from(Instant instant)
从Instant
对象获取Timestamp
的实例。 -
Uses of Instant in java.time
Fields in java.time declared as Instant Modifier and Type Field 描述 static Instant
Instant. EPOCH
常数为1970-01-01T00:00:00Z时代瞬间。static Instant
Instant. MAX
最大支持Instant
,'1000000000-12-31T23:59:59.999999999Z'。static Instant
Instant. MIN
最低支持Instant
,'-1000000000-01-01T00:00Z'。Methods in java.time that return Instant Modifier and Type 方法 描述 static Instant
Instant. from(TemporalAccessor temporal)
从时间对象获取一个Instant
的实例。abstract Instant
Clock. instant()
获取当前的时钟瞬间。Instant
Instant. minus(long amountToSubtract, TemporalUnit unit)
返回此时刻的副本,减去指定的金额。Instant
Instant. minus(TemporalAmount amountToSubtract)
返回此时刻的副本,减去指定的金额。Instant
Instant. minusMillis(long millisToSubtract)
以毫秒为单位的指定持续时间返回此瞬间的副本。Instant
Instant. minusNanos(long nanosToSubtract)
以纳秒为单位返回指定持续时间的此瞬间的副本。Instant
Instant. minusSeconds(long secondsToSubtract)
以秒为单位返回指定持续时间的此瞬间的副本。static Instant
Instant. now()
从系统时钟获取当前瞬间。static Instant
Instant. now(Clock clock)
从指定的时钟获取当前时刻。static Instant
Instant. ofEpochMilli(long epochMilli)
使用从1970-01-01T00:00:00Z的时期开始的毫秒数获得Instant
的实例。static Instant
Instant. ofEpochSecond(long epochSecond)
从1970-01-01T00:00:00Z的时代获得使用秒数的Instant
的实例。static Instant
Instant. ofEpochSecond(long epochSecond, long nanoAdjustment)
使用从1970-01-01T00:00:00Z的时期开始的秒数获得Instant
的实例,Instant
获得秒的纳秒分数。static Instant
Instant. parse(CharSequence text)
从2007-12-03T10:15:30.00Z
等文本字符串获取Instant
的实例。Instant
Instant. plus(long amountToAdd, TemporalUnit unit)
返回添加指定数量的此瞬间的副本。Instant
Instant. plus(TemporalAmount amountToAdd)
返回添加指定数量的此瞬间的副本。Instant
Instant. plusMillis(long millisToAdd)
以毫秒为单位的指定持续时间返回此瞬间的副本。Instant
Instant. plusNanos(long nanosToAdd)
以指定的持续时间返回此瞬间的副本,以纳秒为单位。Instant
Instant. plusSeconds(long secondsToAdd)
以指定的持续时间返回此瞬间的副本,以秒为单位。Instant
OffsetDateTime. toInstant()
将此日期时间转换为Instant
。Instant
Instant. truncatedTo(TemporalUnit unit)
返回此Instant
的副本截断到指定的单位。Instant
Instant. with(TemporalAdjuster adjuster)
返回此瞬间的调整副本。Instant
Instant. with(TemporalField field, long newValue)
将指定的字段设置为新值返回此瞬间的副本。Methods in java.time with parameters of type Instant Modifier and Type 方法 描述 int
Instant. compareTo(Instant otherInstant)
将此瞬间与指定的时刻进行比较。static Clock
Clock. fixed(Instant fixedInstant, ZoneId zone)
获得始终返回相同时刻的时钟。boolean
Instant. isAfter(Instant otherInstant)
检查这个瞬间是否在指定的时刻之后。boolean
Instant. isBefore(Instant otherInstant)
检查这个时刻是否在指定的时刻之前。static LocalDate
LocalDate. ofInstant(Instant instant, ZoneId zone)
从Instant
和区域ID获取LocalDate
的实例。static LocalDateTime
LocalDateTime. ofInstant(Instant instant, ZoneId zone)
从Instant
和区域ID获取LocalDateTime
的实例。static LocalTime
LocalTime. ofInstant(Instant instant, ZoneId zone)
从Instant
和区域ID获取LocalTime
的实例。static OffsetDateTime
OffsetDateTime. ofInstant(Instant instant, ZoneId zone)
从Instant
和区域ID获取OffsetDateTime
的实例。static OffsetTime
OffsetTime. ofInstant(Instant instant, ZoneId zone)
从Instant
和区域ID获取OffsetTime
的实例。static ZonedDateTime
ZonedDateTime. ofInstant(Instant instant, ZoneId zone)
从Instant
获取一个ZonedDateTime
的实例。 -
Uses of Instant in java.time.chrono
Methods in java.time.chrono that return Instant Modifier and Type 方法 描述 default Instant
ChronoLocalDateTime. toInstant(ZoneOffset offset)
将此日期时间转换为Instant
。default Instant
ChronoZonedDateTime. toInstant()
将此日期时间转换为Instant
。Methods in java.time.chrono with parameters of type Instant Modifier and Type 方法 描述 default ChronoZonedDateTime<? extends ChronoLocalDate>
Chronology. zonedDateTime(Instant instant, ZoneId zone)
获得ChronoZonedDateTime
在从这个年表Instant
。ChronoZonedDateTime<HijrahDate>
HijrahChronology. zonedDateTime(Instant instant, ZoneId zone)
ZonedDateTime
IsoChronology. zonedDateTime(Instant instant, ZoneId zone)
从这个年龄从Instant
获得ISOInstant
日期时间。ChronoZonedDateTime<JapaneseDate>
JapaneseChronology. zonedDateTime(Instant instant, ZoneId zone)
ChronoZonedDateTime<MinguoDate>
MinguoChronology. zonedDateTime(Instant instant, ZoneId zone)
ChronoZonedDateTime<ThaiBuddhistDate>
ThaiBuddhistChronology. zonedDateTime(Instant instant, ZoneId zone)
-
Uses of Instant in java.time.zone
Methods in java.time.zone that return Instant Modifier and Type 方法 描述 Instant
ZoneOffsetTransition. getInstant()
获得转换时刻。Methods in java.time.zone with parameters of type Instant Modifier and Type 方法 描述 Duration
ZoneRules. getDaylightSavings(Instant instant)
获取此区域中指定时间使用的夏令时数量。ZoneOffset
ZoneRules. getOffset(Instant instant)
获得这些规则中指定时刻适用的偏移量。ZoneOffset
ZoneRules. getStandardOffset(Instant instant)
获取此区域中指定时刻的标准偏移量。boolean
ZoneRules. isDaylightSavings(Instant instant)
检查指定的时间是否是夏令时。ZoneOffsetTransition
ZoneRules. nextTransition(Instant instant)
在指定的时刻之后获取下一个转换。ZoneOffsetTransition
ZoneRules. previousTransition(Instant instant)
获取指定时刻之前的转换。 -
Uses of Instant in java.util
Methods in java.util that return Instant Modifier and Type 方法 描述 Instant
Calendar. toInstant()
将此对象转换为Instant
。Instant
Date. toInstant()
将此Date
对象转换为Instant
。Methods in java.util with parameters of type Instant Modifier and Type 方法 描述 static Date
Date. from(Instant instant)
从Instant
对象获取一个Date
的实例。 -
Uses of Instant in java.util.logging
Methods in java.util.logging that return Instant Modifier and Type 方法 描述 Instant
LogRecord. getInstant()
获取事件发生的时刻。Methods in java.util.logging with parameters of type Instant Modifier and Type 方法 描述 void
LogRecord. setInstant(Instant instant)
设置事件发生的时刻。
-