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

org.vertexium.query.QueryableIterable Maven / Gradle / Ivy

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

import org.vertexium.Authorizations;
import org.vertexium.VertexiumObject;

public interface QueryableIterable extends Iterable {
    /**
     * Creates a query for this iterable.
     *
     * @param authorizations The authorizations used to find the edges and vertices.
     * @return The query builder.
     */
    Query query(Authorizations authorizations);

    /**
     * Creates a query for this iterable.
     *
     * @param queryString    The string to search for.
     * @param authorizations The authorizations used to find the edges and vertices.
     * @return The query builder.
     */
    Query query(String queryString, Authorizations authorizations);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy