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;
/**
* (c) Matthias Broecheler ([email protected])
*/
public interface GraphQuery extends Query {
@Override
public GraphQuery has(final String key, final Object value);
@Override
public > GraphQuery has(final String key, final T value, final Compare compare);
@Override
public > GraphQuery interval(final String key, final T startValue, final T endValue);
@Override
public GraphQuery limit(final long max);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy