|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Query | |
|---|---|
| com.factual.driver | |
| Uses of Query in com.factual.driver |
|---|
| Methods in com.factual.driver that return Query | |
|---|---|
Query |
Query.and(Query... queries)
Used to nest AND'ed predicates. |
Query |
QueryBuilder.beginsWith(String arg)
|
Query |
QueryBuilder.beginsWithAny(Object... args)
|
Query |
QueryBuilder.blank()
|
Query |
QueryBuilder.equal(Object arg)
|
Query |
QueryBuilder.greaterThan(Object arg)
|
Query |
QueryBuilder.greaterThanOrEqual(Object arg)
|
Query |
QueryBuilder.in(List<Object> args)
|
Query |
QueryBuilder.in(Object... args)
|
Query |
Query.includeRowCount()
The response will include a count of the total number of rows in the table that conform to the request based on included filters. |
Query |
Query.includeRowCount(boolean includeRowCount)
When true, the response will include a count of the total number of rows in the table that conform to the request based on included filters. |
Query |
QueryBuilder.lessThan(Object arg)
|
Query |
QueryBuilder.lessThanOrEqual(Object arg)
|
Query |
Query.limit(long limit)
Sets the maximum amount of records to return from this Query. |
Query |
Query.near(String text,
int meters)
|
Query |
QueryBuilder.notBeginsWith(String arg)
|
Query |
QueryBuilder.notBeginsWithAny(Object... args)
|
Query |
QueryBuilder.notBlank()
|
Query |
QueryBuilder.notEqual(Object arg)
|
Query |
QueryBuilder.notIn(List<Object> args)
|
Query |
QueryBuilder.notIn(Object... args)
|
Query |
Query.offset(long offset)
Sets how many records in to start getting results (i.e., the page offset) for this Query. |
Query |
Query.only(String... fields)
Sets the fields to select. |
Query |
Query.or(Query... queries)
Used to nest OR'ed predicates. |
Query |
QueryBuilder.search(Object arg)
Specifies a full text search. |
Query |
Query.search(String term)
Sets a full text search query. |
Query |
Query.sortAsc(String field)
Sets this Query to sort field in ascending order. |
Query |
Query.sortDesc(String field)
Sets this Query to sort field in descending order. |
Query |
Query.within(Circle circle)
Adds a filter so that results can only be (roughly) within the specified geographic circle. |
| Methods in com.factual.driver with parameters of type Query | |
|---|---|
Query |
Query.and(Query... queries)
Used to nest AND'ed predicates. |
ReadResponse |
Factual.fetch(String tableName,
Query query)
Runs a read query against the specified Factual table. |
Query |
Query.or(Query... queries)
Used to nest OR'ed predicates. |
| Constructors in com.factual.driver with parameters of type Query | |
|---|---|
QueryBuilder(Query query,
String fieldName)
Constructor. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||