eu.drus.jpa.unit.neo4j.operation.Neo4JOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-unit-neo4j Show documentation
Show all versions of jpa-unit-neo4j Show documentation
JUnit extension for simple testing of JPA entities and components
The newest version!
package eu.drus.jpa.unit.neo4j.operation;
public final class Neo4JOperations {
private Neo4JOperations() {}
public static final Neo4JOperation UPDATE = new UpdateOperation();
public static final Neo4JOperation INSERT = new InsertOperation();
public static final Neo4JOperation REFRESH = new RefreshOperation();
public static final Neo4JOperation DELETE = new DeleteOperation();
public static final Neo4JOperation DELETE_ALL = new DeleteAllOperation();
public static final Neo4JOperation CLEAN_INSERT = new CompositeOperation(DELETE_ALL, INSERT);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy