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

org.unipop.query.mutation.RemoveQuery Maven / Gradle / Ivy

package org.unipop.query.mutation;

import org.apache.tinkerpop.gremlin.structure.Element;
import org.unipop.query.StepDescriptor;
import org.unipop.query.UniQuery;
import org.unipop.query.controller.UniQueryController;

import java.util.List;

public class RemoveQuery extends UniQuery {
    private final List elements;

    public RemoveQuery(List elements, StepDescriptor stepDescriptor) {
        super(stepDescriptor);
        this.elements = elements;
    }

    public List getElements(){
        return elements;
    }

    public interface RemoveController extends UniQueryController {
        void remove(RemoveQuery uniQuery);
    }

    @Override
    public String toString() {
        return "RemoveQuery{" +
                "elements=" + elements +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy