Here you can find the source of deserializeToInstant(String date)
public static Instant deserializeToInstant(String date)
//package com.java2s; //License from project: Apache License import java.time.*; public class Main { public static Instant deserializeToInstant(String date) { return Instant.parse(date); }//from w w w. ja v a 2 s. co m }