Here you can find the source of getEarliestInstant()
public static Instant getEarliestInstant()
//package com.java2s; //License from project: Open Source License import java.time.*; public class Main { private static final Instant earliestInstant = LocalDateTime.of(2015, 1, 1, 0, 0).toInstant(ZoneOffset.UTC); public static Instant getEarliestInstant() { return earliestInstant; }// w w w .java2 s . co m }