org.vertexium.inmemory.InMemoryVertexTable Maven / Gradle / Ivy
package org.vertexium.inmemory;
import java.util.Map;
public class InMemoryVertexTable extends InMemoryTable {
public InMemoryVertexTable(Map> rows) {
super(rows);
}
public InMemoryVertexTable() {
super();
}
@Override
protected InMemoryTableElement createInMemoryTableElement(String id) {
return new InMemoryTableVertex(id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy