* @return
*/
public abstract T decode(JSONObject json, Map<String, Object> references);
public static JSONDecoder get(Class clazz) {
FixedTypeDecoder decoder = FixedTypeDecoder.isFinalDecoder(clazz);
if (decoder != null) {
return decoder;
}
SpecTypeDecoder specTypeDecoder = SpecTypeDecoder.isSpecTypeDecoder(clazz);