Class RuntimeClassNameTypeAdapterFactory<T>
- java.lang.Object
-
- cn.boboweike.carrot.utils.mapper.gson.RuntimeClassNameTypeAdapterFactory<T>
-
- All Implemented Interfaces:
com.google.gson.TypeAdapterFactory
public final class RuntimeClassNameTypeAdapterFactory<T> extends Object implements com.google.gson.TypeAdapterFactory
Disclaimer: taken from here https://stackoverflow.com/a/40133286/285091 with some modifications
Adapts values whose runtime type may differ from their declaration type. This is necessary when a field's type is not the same type that GSON should create when deserializing that field. For example, consider these types:
abstract class Shape { int x; int y; } class Circle extends Shape { int radius; } class Rectangle extends Shape { int width; int height; } class Diamond extends Shape { int width; int height; } class Drawing { Shape bottomShape; Shape topShape; }Without additional type information, the serialized JSON is ambiguous. Is the bottom shape in this drawing a rectangle or a diamond?
This class addresses this problem by adding type information to the serialized JSON and honoring that type information when the JSON is deserialized:{ "bottomShape": { "width": 10, "height": 5, "x": 0, "y": 0 }, "topShape": { "radius": 2, "x": 4, "y": 1 } }
Both the type field name ({ "bottomShape": { "type": "Diamond", "width": 10, "height": 5, "x": 0, "y": 0 }, "topShape": { "type": "Circle", "radius": 2, "x": 4, "y": 1 } }"type") and the type labels ("Rectangle") are configurable.Registering Types
Create aRuntimeTypeAdapterFactoryby passing the base type and type field name to theof(java.lang.Class<T>, java.lang.String)factory method. If you don't supply an explicit type field name,"type"will be used.
Next register all of your subtypes. Every subtype must be explicitly registered. This protects your application from injection attacks. If you don't supply an explicit type label, the type's simple name will be used.RuntimeTypeAdapterFactory<Shape> shapeAdapterFactory = RuntimeTypeAdapterFactory.of(Shape.class, "type");
Finally, register the type adapter factory in your application's GSON builder:shapeAdapter.registerSubtype(Rectangle.class, "Rectangle"); shapeAdapter.registerSubtype(Circle.class, "Circle"); shapeAdapter.registerSubtype(Diamond.class, "Diamond");
LikeGson gson = new GsonBuilder() .registerTypeAdapterFactory(shapeAdapterFactory) .create();GsonBuilder, this API supports chaining:RuntimeTypeAdapterFactory<Shape> shapeAdapterFactory = RuntimeTypeAdapterFactory.of(Shape.class) .registerSubtype(Rectangle.class) .registerSubtype(Circle.class) .registerSubtype(Diamond.class);
-
-
Field Summary
Fields Modifier and Type Field Description static StringTYPE_FIELD_NAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> com.google.gson.TypeAdapter<R>create(com.google.gson.Gson gson, com.google.gson.reflect.TypeToken<R> type)static <T> RuntimeClassNameTypeAdapterFactory<T>of(Class<T> baseType)Creates a new runtime type adapter forbaseTypeusing"type"as the type field name.static <T> RuntimeClassNameTypeAdapterFactory<T>of(Class<T> baseType, String typeFieldName)Creates a new runtime type adapter using forbaseTypeusingtypeFieldNameas the type field name.RuntimeClassNameTypeAdapterFactory<T>registerSubtype(Class<? extends T> type)Registerstypeidentified by itssimple name.RuntimeClassNameTypeAdapterFactory<T>registerSubtype(Class<? extends T> type, String label)Registerstypeidentified bylabel.
-
-
-
Field Detail
-
TYPE_FIELD_NAME
public static final String TYPE_FIELD_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
of
public static <T> RuntimeClassNameTypeAdapterFactory<T> of(Class<T> baseType, String typeFieldName)
Creates a new runtime type adapter using forbaseTypeusingtypeFieldNameas the type field name. Type field names are case-sensitive.- Type Parameters:
T- generic type for baseType- Parameters:
baseType- the base typetypeFieldName- the type field name- Returns:
- a RuntimeClassNameTypeAdapterFactory instance
-
of
public static <T> RuntimeClassNameTypeAdapterFactory<T> of(Class<T> baseType)
Creates a new runtime type adapter forbaseTypeusing"type"as the type field name.- Type Parameters:
T- generic type for baseType- Parameters:
baseType- the base type- Returns:
- a RuntimeClassNameTypeAdapterFactory instance
-
registerSubtype
public RuntimeClassNameTypeAdapterFactory<T> registerSubtype(Class<? extends T> type, String label)
Registerstypeidentified bylabel. Labels are case-sensitive.- Parameters:
type- the typelabel- a string label- Returns:
- a RuntimeClassNameTypeAdapterFactory instance
- Throws:
IllegalArgumentException- if eithertypeorlabelhave already been registered on this type adapter.
-
registerSubtype
public RuntimeClassNameTypeAdapterFactory<T> registerSubtype(Class<? extends T> type)
Registerstypeidentified by itssimple name. Labels are case-sensitive.- Parameters:
type- the type- Returns:
- a RuntimeClassNameTypeAdapterFactory instance
- Throws:
IllegalArgumentException- if eithertypeor its simple name have already been registered on this type adapter.
-
create
public <R> com.google.gson.TypeAdapter<R> create(com.google.gson.Gson gson, com.google.gson.reflect.TypeToken<R> type)- Specified by:
createin interfacecom.google.gson.TypeAdapterFactory
-
-