Java Instant Create getEarliestInstant()

Here you can find the source of getEarliestInstant()

Description

get Earliest Instant

License

Open Source License

Declaration

public static Instant getEarliestInstant() 

Method Source Code


//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
}

Related

  1. convertDotNetTicksToInstant(long dotNetTicks)
  2. deserializeToInstant(String date)
  3. deserializeToInstant(String date)
  4. end(String msg, long amount, Instant start)
  5. getInstant(final Calendar calendar)
  6. getInstant(LocalDate localDate)
  7. getInstantOfEpoch(long seconds)
  8. getThisMonthBeginInstant()