如何使用Moshi反序列化通用类成员?

时间:2018-09-30 13:45:35

标签: android retrofit moshi

我正在获取一个包含通用成员的JSON对象(数据可以是几种不同的类型)。该类当前如下所示:

@Parcelize
data class Children<T: Parcelable>(
        @Json(name = "type") val type: String,
        @Json(name = "data") val data: T
): Parcelable

我该如何使用moshi反序列化/映射正确的对象类型?

@Parcelize
data class Comment<T : Parcelable>(
    @Json(name = "replies") val replies: Children<T>,
    @Json(name = "count") val count: Int,
    @Json(name = "children") val childs: List<String>

) : Parcelable

或者像这样的实例呢?我应该注意Comment可以采用Comment的通用参数,从而导致循环。

1 个答案:

答案 0 :(得分:1)

在MoshiExtensions中添加以下内联,然后尝试相应地使用它们。

inline fun <reified E> Moshi.listAdapter(elementType: Type = E::class.java): JsonAdapter<List<E>> {
    return adapter(listType<E>(elementType))
}

inline fun <reified K, reified V> Moshi.mapAdapter(
        keyType: Type = K::class.java,
        valueType: Type = V::class.java): JsonAdapter<Map<K, V>> {
    return adapter(mapType<K, V>(keyType, valueType))
}

inline fun <reified E> listType(elementType: Type = E::class.java): Type {
    return Types.newParameterizedType(List::class.java, elementType)
}

inline fun <reified K, reified V> mapType(
        keyType: Type = K::class.java,
        valueType: Type = V::class.java): Type {
    return Types.newParameterizedType(Map::class.java, keyType, valueType)
}