Package | Description |
---|---|
com.socrata.builders |
Helper objects to create and manipulate some of the objects defined in com.socrata.model.These are
not necassary for using the API, but can be useful.
|
com.socrata.model.soql |
The model objects (nouns) used for defining SoQL operations.
|
Modifier and Type | Method and Description |
---|---|
SoqlQueryBuilder |
SoqlQueryBuilder.setHavingClause(Expression havingClause) |
SoqlQueryBuilder |
SoqlQueryBuilder.setWhereClause(Expression whereClause) |
Modifier and Type | Class and Description |
---|---|
class |
CompositeExpression
An expression that combines multiple expressions with either an "AND" or an "OR"
operation.
|
class |
ConditionalExpression
The conditional expressions to actually get evaluated against rows.
|
Modifier and Type | Field and Description |
---|---|
Expression |
SoqlQuery.havingClause |
Expression |
SoqlQuery.whereClause |
Modifier and Type | Field and Description |
---|---|
com.google.common.collect.ImmutableList<Expression> |
CompositeExpression.children |
Modifier and Type | Method and Description |
---|---|
List<Expression> |
CompositeExpression.getChildren() |
Constructor and Description |
---|
SoqlQuery(List<String> selectClause,
Expression whereClause,
List<String> groupByClause,
Expression havingClause,
List<OrderByClause> orderByClause,
String fullTextSearchClause,
Integer offset,
Integer limit) |
Constructor and Description |
---|
CompositeExpression(CompositeOperations ops,
List<Expression> children)
Constructor.
|
CompositeExpression(List<Expression> children)
Constructor that creates an expression that combines child expressions with AND operations.
|
Copyright © 2013. All Rights Reserved.