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

org.apache.tinkerpop.gremlin.orientdb.OrientIndexQuery Maven / Gradle / Ivy

There is a newer version: 3.2.3.0
Show newest version
package org.apache.tinkerpop.gremlin.orientdb;

import com.orientechnologies.orient.core.index.OIndex;
import java.util.Optional;

public class OrientIndexQuery {
    public final Optional value;
    public final OIndex index;

    public OrientIndexQuery(OIndex index, Optional value) {
        this.index = index;
        this.value = value;
    }

    public String toString() {
        return "OrientIndexQuery(index=" + index + ", value=" + value + ")";
    }
}