public static class AdvancementProgress.Serializer extends java.lang.Object implements com.google.gson.JsonDeserializer<AdvancementProgress>, com.google.gson.JsonSerializer<AdvancementProgress>
| コンストラクタと説明 | 
|---|
| Serializer() | 
| 修飾子とタイプ | メソッドと説明 | 
|---|---|
| AdvancementProgress | deserialize(com.google.gson.JsonElement p_deserialize_1_,
           java.lang.reflect.Type p_deserialize_2_,
           com.google.gson.JsonDeserializationContext p_deserialize_3_)Gson invokes this call-back method during deserialization when it encounters a field of the
 specified type. | 
| com.google.gson.JsonElement | serialize(AdvancementProgress p_serialize_1_,
         java.lang.reflect.Type p_serialize_2_,
         com.google.gson.JsonSerializationContext p_serialize_3_)Gson invokes this call-back method during serialization when it encounters a field of the
 specified type. | 
public com.google.gson.JsonElement serialize(AdvancementProgress p_serialize_1_, java.lang.reflect.Type p_serialize_2_, com.google.gson.JsonSerializationContext p_serialize_3_)
com.google.gson.JsonSerializerIn the implementation of this call-back method, you should consider invoking
 JsonSerializationContext.serialize(Object, Type) method to create JsonElements for any
 non-trivial field of the src object. However, you should never invoke it on the
 src object itself since that will cause an infinite loop (Gson will call your
 call-back method again).
serialize インタフェース内 com.google.gson.JsonSerializer<AdvancementProgress>p_serialize_1_ - the object that needs to be converted to Json.p_serialize_2_ - the actual type (fully genericized version) of the source object.public AdvancementProgress deserialize(com.google.gson.JsonElement p_deserialize_1_, java.lang.reflect.Type p_deserialize_2_, com.google.gson.JsonDeserializationContext p_deserialize_3_) throws com.google.gson.JsonParseException
com.google.gson.JsonDeserializerIn the implementation of this call-back method, you should consider invoking
 JsonDeserializationContext.deserialize(JsonElement, Type) method to create objects
 for any non-trivial field of the returned object. However, you should never invoke it on the
 the same type passing json since that will cause an infinite loop (Gson will call your
 call-back method again).
deserialize インタフェース内 com.google.gson.JsonDeserializer<AdvancementProgress>p_deserialize_1_ - The Json data being deserializedp_deserialize_2_ - The type of the Object to deserialize toTcom.google.gson.JsonParseException - if json is not in the expected format of typeofT