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

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

package org.vertexium.inmemory;

import org.vertexium.Authorizations;

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

    @Override
    public InMemoryEdge createElementInternal(InMemoryGraph graph, boolean includeHidden, Long endTime, Authorizations authorizations) {
        return new InMemoryEdge(graph, getId(), this, includeHidden, endTime, authorizations);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy