Package de.xima.fc.helper
Class GsonJavaTimeAdapter.LocalDateAdapter
- java.lang.Object
-
- com.google.gson.TypeAdapter<LocalDate>
-
- de.xima.fc.helper.GsonJavaTimeAdapter.LocalDateAdapter
-
- Enclosing class:
- GsonJavaTimeAdapter
public static class GsonJavaTimeAdapter.LocalDateAdapter extends com.google.gson.TypeAdapter<LocalDate>
Type adapter forLocalDate
. Serialized representation is a JSON object with theyear
,month
, andday
properties.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Constructor Summary
Constructors Constructor Description LocalDateAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LocalDate
read(com.google.gson.stream.JsonReader in)
void
write(com.google.gson.stream.JsonWriter out, LocalDate value)
-
-
-
Method Detail
-
read
public LocalDate read(com.google.gson.stream.JsonReader in) throws IOException
- Specified by:
read
in classcom.google.gson.TypeAdapter<LocalDate>
- Throws:
IOException
-
write
public void write(com.google.gson.stream.JsonWriter out, LocalDate value) throws IOException
- Specified by:
write
in classcom.google.gson.TypeAdapter<LocalDate>
- Throws:
IOException
-
-