Interface JsonTypeAdapter<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T fromJson​(com.google.gson.JsonElement json, com.google.gson.JsonDeserializationContext jsonDeserializationContext)  
      java.util.List<java.lang.Class> getValueTypes()
      Target class (or classes), typically ValueType or CustomType.
      com.google.gson.JsonElement toJson​(T sourceValue, com.google.gson.JsonSerializationContext jsonSerializationContext)  
    • Method Detail

      • fromJson

        T fromJson​(com.google.gson.JsonElement json,
                   com.google.gson.JsonDeserializationContext jsonDeserializationContext)
        Parameters:
        json - not null and not JsonNull
        jsonDeserializationContext - use it to invoke default deserialization on the specified object
      • toJson

        com.google.gson.JsonElement toJson​(T sourceValue,
                                           com.google.gson.JsonSerializationContext jsonSerializationContext)
        Parameters:
        sourceValue - not null
        jsonSerializationContext - use it to invoke default serialization on the specified object
      • getValueTypes

        java.util.List<java.lang.Class> getValueTypes()
        Target class (or classes), typically ValueType or CustomType.
        Each target class should have a no-argument constructor (public or private).

        If adapter is designed to handle single class, should return a List with one element — a supported class.