<T> JsonCodec<T> |
JsonCodecFactory.jsonCodec(Class<T> type) |
static <T> JsonCodec<T> |
JsonCodec.jsonCodec(Class<T> type) |
<T> JsonCodec<T> |
JsonCodecFactory.jsonCodec(Type type) |
<T> JsonCodec<T> |
JsonCodecFactory.jsonCodec(com.google.common.reflect.TypeToken<T> type) |
static <T> JsonCodec<T> |
JsonCodec.jsonCodec(com.google.common.reflect.TypeToken<T> type) |
<T> JsonCodec<List<T>> |
JsonCodecFactory.listJsonCodec(Class<T> type) |
static <T> JsonCodec<List<T>> |
JsonCodec.listJsonCodec(Class<T> type) |
<T> JsonCodec<List<T>> |
JsonCodecFactory.listJsonCodec(JsonCodec<T> type) |
static <T> JsonCodec<List<T>> |
JsonCodec.listJsonCodec(JsonCodec<T> type) |
<K,V> JsonCodec<Map<K,V>> |
JsonCodecFactory.mapJsonCodec(Class<K> keyType,
Class<V> valueType) |
static <K,V> JsonCodec<Map<K,V>> |
JsonCodec.mapJsonCodec(Class<K> keyType,
Class<V> valueType) |
<K,V> JsonCodec<Map<K,V>> |
JsonCodecFactory.mapJsonCodec(Class<K> keyType,
JsonCodec<V> valueType) |
static <K,V> JsonCodec<Map<K,V>> |
JsonCodec.mapJsonCodec(Class<K> keyType,
JsonCodec<V> valueType) |