java.time.zone.ZoneOffsetTransitionRule.getLocalTime()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(115)

本文整理了Java中java.time.zone.ZoneOffsetTransitionRule.getLocalTime()方法的一些代码示例,展示了ZoneOffsetTransitionRule.getLocalTime()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneOffsetTransitionRule.getLocalTime()方法的具体详情如下:
包路径:java.time.zone.ZoneOffsetTransitionRule
类名称:ZoneOffsetTransitionRule
方法名:getLocalTime

ZoneOffsetTransitionRule.getLocalTime介绍

[英]Gets the local time of day of the transition which must be checked with #isMidnightEndOfDay().

The time is converted into an instant using the time definition.
[中]获取必须使用#isMidnightEndOfDay()检查的转换的本地时间。
使用时间定义将时间转换为瞬间。

代码示例

代码示例来源:origin: org.mnode.ical4j/ical4j

.with(TemporalAdjusters.firstInMonth(transitionRuleDayOfWeek))
    .withMonth(transitionRuleMonthValue)
    .with(transitionRule.getLocalTime());
Month month = ldt.getMonth();

代码示例来源:origin: ical4j/ical4j

.with(TemporalAdjusters.firstInMonth(transitionRuleDayOfWeek))
    .withMonth(transitionRuleMonthValue)
    .with(transitionRule.getLocalTime());
Month month = ldt.getMonth();

代码示例来源:origin: net.time4j/time4j-olson

zotr.isMidnightEndOfDay()
? PlainTime.midnightAtEndOfDay()
: TemporalType.LOCAL_TIME.translate(zotr.getLocalTime()));

代码示例来源:origin: bluestreak01/questdb

tr.month = zr.getMonth().getValue();
tr.midnightEOD = zr.isMidnightEndOfDay();
tr.hour = zr.getLocalTime().getHour();
tr.minute = zr.getLocalTime().getMinute();
tr.second = zr.getLocalTime().getSecond();
switch (zr.getTimeDefinition()) {
  case UTC:

代码示例来源:origin: bluestreak01/questdb

tr.month = zr.getMonth().getValue();
tr.midnightEOD = zr.isMidnightEndOfDay();
tr.hour = zr.getLocalTime().getHour();
tr.minute = zr.getLocalTime().getMinute();
tr.second = zr.getLocalTime().getSecond();
switch (zr.getTimeDefinition()) {
  case UTC:

相关文章