本文整理匯總了Java中java.time.ZonedDateTime.withHour方法的典型用法代碼示例。如果您正苦於以下問題:Java ZonedDateTime.withHour方法的具體用法?Java ZonedDateTime.withHour怎麽用?Java ZonedDateTime.withHour使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.time.ZonedDateTime
的用法示例。
在下文中一共展示了ZonedDateTime.withHour方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: nowGasDay
import java.time.ZonedDateTime; //導入方法依賴的package包/類
public static ZonedDateTime nowGasDay() {
final ZonedDateTime now = ZonedDateTime.now(ZoneOffset.UTC);
now.withHour(6);
now.withMinute(0);
now.withSecond(0);
now.withNano(0);
return now;
}
示例2: areInSameTimeFrame
import java.time.ZonedDateTime; //導入方法依賴的package包/類
@Override
public boolean areInSameTimeFrame(final Instant instant1, final Instant instant2) {
final ZonedDateTime britishTime = instant1.atZone(BRITISH_TIME_ZONE);
final DayOfWeek britishDay = britishTime.getDayOfWeek();
final ZonedDateTime localBase = britishTime.withHour(0).withMinute(0).withSecond(0).withNano(0);
final ZonedDateTime start;
final ZonedDateTime end;
if (britishDay == SUNDAY) {
if (britishTime.isBefore(localBase.withHour(22))) {
start = localBase;
end = localBase.withHour(22);
} else {
start = localBase.withHour(22);
end = localBase.plusDays(2);
}
} else if (britishDay == MONDAY) {
start = localBase.minusDays(1).withHour(22);
end = localBase.plusDays(1);
} else {
start = localBase;
end = localBase.plusDays(1);
}
return instant2.equals(start.toInstant())
|| (instant2.isAfter(start.toInstant()) && instant2.isBefore(end.toInstant()));
}
示例3: test_withHour_normal
import java.time.ZonedDateTime; //導入方法依賴的package包/類
@Test
public void test_withHour_normal() {
ZonedDateTime base = ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500, ZONE_0100);
ZonedDateTime test = base.withHour(15);
assertEquals(test, ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500.withHour(15), ZONE_0100));
}
示例4: test_withHour_noChange
import java.time.ZonedDateTime; //導入方法依賴的package包/類
@Test
public void test_withHour_noChange() {
ZonedDateTime base = ZonedDateTime.of(TEST_LOCAL_2008_06_30_11_30_59_500, ZONE_0100);
ZonedDateTime test = base.withHour(11);
assertEquals(test, base);
}