com.tinkerpop.blueprints.GraphQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blueprints-core Show documentation
Show all versions of blueprints-core Show documentation
Core interfaces and utilities for Blueprints
package com.tinkerpop.blueprints;
/**
* @author Matthias Broecheler ([email protected])
* @author Marko A. Rodriguez (http://markorodriguez.com)
* @author Luca Garulli (http://www.orientechnologies.com)
* @author Daniel Kuppitz ([email protected])
*/
public interface GraphQuery extends Query {
@Override
public GraphQuery has(String key);
@Override
public GraphQuery hasNot(String key);
@Override
public GraphQuery has(String key, Object value);
@Override
public GraphQuery hasNot(String key, Object value);
@Override
public GraphQuery has(String key, Predicate predicate, Object value);
@Override
@Deprecated
public > GraphQuery has(String key, T value, Compare compare);
@Override
public > GraphQuery interval(String key, T startValue, T endValue);
@Override
public GraphQuery limit(int limit);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy