All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.fastjson2.adapter.jackson.databind.MappingIterator Maven / Gradle / Ivy

The newest version!
package com.alibaba.fastjson2.adapter.jackson.databind;

import com.alibaba.fastjson2.JSONException;

import java.io.Closeable;
import java.io.IOException;
import java.util.Iterator;

public abstract class MappingIterator
        implements Iterator, Closeable {
    public T nextValue() throws IOException {
        throw new JSONException("TODO");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy