The flare.query package provides classes for creating and processing SQL-style queries over ActionScript objects.
| Class | Description | |
|---|---|---|
| AggregateExpression | Base class representing an aggregate query operator. | |
| And | Expression operator that computes the logical "and" of sub-expression clauses. | |
| Arithmetic | Expression operator for arithmetic operations. | |
| Average | Aggregate operator for computing the average of a set of values. | |
| BinaryExpression | Base class for binary expression operators. | |
| Comparison | Expression operator for comparing sub-expression values. | |
| CompositeExpression | Base class for expressions with an arbitrary number of sub-expressions. | |
| Count | Aggregate operator for counting the number of items in a set of values. | |
| DateUtil |
Utility class providing functions for manipulating Date
objects. |
|
| Distinct | Aggregate (group-by) operator for counting the number of distinct values in a set of values. | |
| Expression | Base class for query expression operators. | |
| ExpressionIterator | The ExpressionIterator simplifies the process of traversing an expression tree. | |
| Fn | Expression operator that performs function invocation. | |
| If | Expression operator for an if statement that performs conditional execution. | |
| IsA | Expression operator that type checks a sub-expression. | |
| Literal | Expression operator for a literal value. | |
| Match | Expression operator for text matching operations. | |
| Maximum | Aggregate operator for computing the maximum of a set of values. | |
| Minimum | Aggregate operator for computing the minimum of a set of values. | |
| Not | Expression operator that returns the logical "not" of a sub-expression. | |
| Or | Expression operator that computes the logical "or" of sub-expression clauses. | |
| Query | Performs query processing over a collection of ActionScript objects. | |
| Range | Expression operator that tests if a value is within a given range. | |
| StringUtil |
Utility class providing functions for manipulating String
objects. |
|
| Sum | Aggregate operator for computing the sum of a set of values. | |
| Variable | Expression operator that retrieves a value from an object property. | |
| Variance | Aggregate operator for computing variance or standard deviation. | |
| Xor | Expression operator that computes the exclusive-or ("xor") of sub-expression clauses. |