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

org.vertexium.inmemory.InMemoryTableVertex Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.vertexium.inmemory;

import org.vertexium.Authorizations;
import org.vertexium.FetchHint;

import java.util.EnumSet;

public class InMemoryTableVertex extends InMemoryTableElement {
    public InMemoryTableVertex(String id) {
        super(id);
    }

    @Override
    public InMemoryVertex createElementInternal(InMemoryGraph graph, EnumSet fetchHints, Long endTime, Authorizations authorizations) {
        return new InMemoryVertex(graph, getId(), this, fetchHints, endTime, authorizations);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy