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

eu.interedition.text.neo4j.DataNodeMapper Maven / Gradle / Ivy

The newest version!
package eu.interedition.text.neo4j;

import java.io.IOException;
import org.neo4j.graphdb.Node;

/**
 * @author Gregor Middell
 */
public interface DataNodeMapper {

    T read(Node source, Class type) throws IOException;

    void write(T data, Node target) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy