Searched defs:Instant (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
H A DInstant.java193 * This includes {@code Instant}, {@code LocalDate}, {@code LocalTime}, {@code OffsetDateTime},
201 public final class Instant class in inherits:Temporal,TemporalAdjuster,Comparable,Serializable
202 implements Temporal, TemporalAdjuster, Comparable<Instant>, Serializable {
207 public static final Instant EPOCH = new Instant(0, 0);
217 * The minimum supported {@code Instant}, '-1000000000-01-01T00:00Z'.
226 public static final Instant MIN = Instant.ofEpochSecond(MIN_SECOND, 0);
228 * The maximum supported {@code Instant}, '1000000000-12-31T23:59:59.999999999Z'.
237 public static final Instant MA
417 private Instant(long epochSecond, int nanos) { method in class:Instant
[all...]

Completed in 60 milliseconds