(@NotNull JsonReader reader, @NotNull ClassMeta<T> classMeta, @Nullable FieldMeta fieldMeta, @Nullable T obj, @Nullable Object parent)
| 82 | |
| 83 | public interface Parser<T> { |
| 84 | @Nullable T parse(@NotNull JsonReader reader, @NotNull ClassMeta<T> classMeta, @Nullable FieldMeta fieldMeta, |
| 85 | @Nullable T obj, @Nullable Object parent) throws ReflectiveOperationException; |
| 86 | |
| 87 | @SuppressWarnings("unchecked") |
no outgoing calls