Here you can find the source of deserializeLocalTime(String date)
public static LocalTime deserializeLocalTime(String date)
//package com.java2s; //License from project: Apache License import java.time.*; import java.time.format.DateTimeFormatter; public class Main { private static final DateTimeFormatter ISO_LOCAL_TIME_FORMAT = DateTimeFormatter.ISO_LOCAL_TIME; public static LocalTime deserializeLocalTime(String date) { return LocalTime.parse(date, ISO_LOCAL_TIME_FORMAT); }/* w w w . ja v a 2s .com*/ }