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

org.vertexium.DefaultEdgeElementLocation Maven / Gradle / Ivy

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

class DefaultEdgeElementLocation extends DefaultElementLocation implements EdgeElementLocation {
    private final String label;
    private final String outVertexId;
    private final String inVertexId;

    DefaultEdgeElementLocation(
        String id,
        Visibility visibility,
        String label,
        String outVertexId,
        String inVertexId
    ) {
        super(ElementType.EDGE, id, visibility);
        this.label = label;
        this.outVertexId = outVertexId;
        this.inVertexId = inVertexId;
    }

    @Override
    public String getVertexId(Direction direction) {
        switch (direction) {
            case OUT:
                return getOutVertexId();
            case IN:
                return getInVertexId();
            default:
                throw new VertexiumException("Direction not handled: " + direction);
        }
    }

    @Override
    public String getLabel() {
        return label;
    }

    public String getOutVertexId() {
        return outVertexId;
    }

    public String getInVertexId() {
        return inVertexId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy