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

ca.pjer.parseclient.Query Maven / Gradle / Ivy

package ca.pjer.parseclient;

import java.util.concurrent.Future;

public interface Query {

	Query select(String... keys);

	Query where(String where);

	Query constrain(QueryConstraint queryConstraint);

	Query ascending(String ascending);

	Query descending(String descending);

	Query limit(int limit);

	Query skip(int skip);

	Query count();

	QueryResults find();

	Future> findAsync();

	Operation> findOperation();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy