本文整理汇总了Java中java.time.Instant.plusMillis方法的典型用法代码示例。如果您正苦于以下问题:Java Instant.plusMillis方法的具体用法?Java Instant.plusMillis怎么用?Java Instant.plusMillis使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.time.Instant
的用法示例。
在下文中一共展示了Instant.plusMillis方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: generateValue
import java.time.Instant; //导入方法依赖的package包/类
@Override
public Instant generateValue() {
switch (generator) {
case CONSTANT: return start;
case INCREMENT:
Instant current = currentInc;
currentInc = current.plusMillis(step.toEpochMilli());
return current;
case RANDOM: return generateRandom();
default:
return null;
}
}
示例2: plusMillis_long
import java.time.Instant; //导入方法依赖的package包/类
@Test(dataProvider="PlusMillis")
public void plusMillis_long(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) {
Instant t = Instant.ofEpochSecond(seconds, nanos);
t = t.plusMillis(amount);
assertEquals(t.getEpochSecond(), expectedSeconds);
assertEquals(t.getNano(), expectedNanoOfSecond);
}
示例3: plusMillis_long_oneMore
import java.time.Instant; //导入方法依赖的package包/类
@Test(dataProvider="PlusMillis")
public void plusMillis_long_oneMore(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) {
Instant t = Instant.ofEpochSecond(seconds + 1, nanos);
t = t.plusMillis(amount);
assertEquals(t.getEpochSecond(), expectedSeconds + 1);
assertEquals(t.getNano(), expectedNanoOfSecond);
}
示例4: plusMillis_long_minusOneLess
import java.time.Instant; //导入方法依赖的package包/类
@Test(dataProvider="PlusMillis")
public void plusMillis_long_minusOneLess(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) {
Instant t = Instant.ofEpochSecond(seconds - 1, nanos);
t = t.plusMillis(amount);
assertEquals(t.getEpochSecond(), expectedSeconds - 1);
assertEquals(t.getNano(), expectedNanoOfSecond);
}
示例5: plusMillis_long_max
import java.time.Instant; //导入方法依赖的package包/类
@Test
public void plusMillis_long_max() {
Instant t = Instant.ofEpochSecond(MAX_SECOND, 998999999);
t = t.plusMillis(1);
assertEquals(t.getEpochSecond(), MAX_SECOND);
assertEquals(t.getNano(), 999999999);
}
示例6: plusMillis_long_min
import java.time.Instant; //导入方法依赖的package包/类
@Test
public void plusMillis_long_min() {
Instant t = Instant.ofEpochSecond(MIN_SECOND, 1000000);
t = t.plusMillis(-1);
assertEquals(t.getEpochSecond(), MIN_SECOND);
assertEquals(t.getNano(), 0);
}
示例7: plusMillis_long_overflowTooBig
import java.time.Instant; //导入方法依赖的package包/类
@Test(expectedExceptions=DateTimeException.class)
public void plusMillis_long_overflowTooBig() {
Instant t = Instant.ofEpochSecond(MAX_SECOND, 999000000);
t.plusMillis(1);
}
示例8: plusMillis_long_overflowTooSmall
import java.time.Instant; //导入方法依赖的package包/类
@Test(expectedExceptions=DateTimeException.class)
public void plusMillis_long_overflowTooSmall() {
Instant t = Instant.ofEpochSecond(MIN_SECOND, 0);
t.plusMillis(-1);
}