|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use QueryParseException | |
---|---|
org.josql | |
org.josql.contrib | |
org.josql.expressions | |
org.josql.filters | |
org.josql.incubator | |
org.josql.internal | |
org.josql.utils |
Uses of QueryParseException in org.josql |
---|
Methods in org.josql that throw QueryParseException | |
---|---|
void |
Query.init()
|
void |
Query.initOrderByComparator()
Will cause the order by comparator used to order the results to be initialized. |
void |
Query.parse(String q)
Parse the JoSQL query. |
static QueryResults |
Query.parseAndExec(String query,
List objs)
|
QueryResults |
Query.reorder(List objs,
SortedMap dirs)
Re-order the objects according to the columns supplied in the dirs Map. |
QueryResults |
Query.reorder(List objs,
String orderBys)
Allows the re-ordering of the results via a textual representation of the order bys. |
Uses of QueryParseException in org.josql.contrib |
---|
Methods in org.josql.contrib that throw QueryParseException | |
---|---|
void |
JoSQLFreeChartXYDataset.addSeries(int series,
int xCol,
int yCol)
|
void |
JoSQLFreeChartCategoryDataset.define(int xCol,
int[] yCols)
|
void |
JoSQLFreeChartCategoryDataset.define(int xCol,
List yCols)
|
void |
JoSQLFreeChartCategoryDataset.define(int xCol,
Object[] yCols)
|
void |
JoSQLSwingTableModel.parse(String sql)
Parse the SQL. |
QueryResults |
JoSQLSwingTableModel.reorder(List objs,
SortedMap dirs)
Re-order the columns according to the column indices provided in dirs. |
QueryResults |
JoSQLSwingTableModel.reorder(List objs,
String orderBys)
Re-order the columns according to the string representation provided by orderBys. |
void |
JoSQLFreeChartPieDataset.setKeyValue(int keyCol,
int valueCol)
|
Uses of QueryParseException in org.josql.expressions |
---|
Methods in org.josql.expressions that throw QueryParseException | |
---|---|
Class |
SubQueryExpression.getExpectedReturnType(Query q)
|
Class |
SelectItemExpression.getExpectedReturnType(Query q)
|
Class |
SaveValue.getExpectedReturnType(Query q)
|
Class |
NewObjectExpression.getExpectedReturnType(Query q)
|
abstract Class |
Expression.getExpectedReturnType(Query q)
Return the class of the object that "should" be returned from a call to the: Expression.getValue(Object,Query) method. |
Class |
BindVariable.getExpectedReturnType(Query q)
Get the expected return type. |
Class |
ArithmeticExpression.getExpectedReturnType(Query q)
Return the expected return type. |
Class |
AliasedExpression.getExpectedReturnType(Query q)
Get the expected return type for the expression. |
Class |
Accessor.getExpectedReturnType(Query q)
|
void |
SubQueryExpression.init(Query q)
|
void |
SelectItemExpression.init(Query q)
|
void |
NewObjectExpression.init(Query q)
|
void |
LikeExpression.init(Query q)
Init the expression, we over-ride here so that if the RHS is fixed we can init the pattern that will be used to match the expression. |
void |
InExpression.init(Query q)
Initialise the IN expression. |
void |
Function.init(Query q)
This is a complex method that will initialise the function. |
void |
ExpressionList.init(Query q)
Initialises this expression list, each expression in the list is inited. |
abstract void |
Expression.init(Query q)
Perform the necessary initialisation for this expression. |
void |
BindVariable.init(Query q)
Initialises this bind variable. |
void |
BinaryExpression.init(Query q)
Init the expression. |
void |
BetweenExpression.init(Query q)
Inits the expression. |
void |
ArithmeticExpression.init(Query q)
|
void |
AliasedExpression.init(Query q)
Init this expression. |
void |
Accessor.init(Query q)
|
Uses of QueryParseException in org.josql.filters |
---|
Methods in org.josql.filters that throw QueryParseException | |
---|---|
void |
AbstractJoSQLFilter.setQuery(Query q)
Set a new Query object for use in this filter. |
void |
AbstractJoSQLFilter.setQuery(String q)
Set a new Query (string form) for use in this filter. |
Constructors in org.josql.filters that throw QueryParseException | |
---|---|
AbstractJoSQLFilter(Query q)
Init this file filter with the query already built and parsed. |
|
AbstractJoSQLFilter(String q)
Init this filter with the query. |
|
DefaultObjectFilter(Query q)
Init this file filter with the query already built and parsed. |
|
DefaultObjectFilter(String w,
Class c)
Init this filter with the where clause, note the class specified will be used in the FROM clause. |
|
JoSQLFileFilter(Query q)
Init this file filter with the query already built and parsed. |
|
JoSQLFileFilter(String q)
Init this file filter with the query. |
|
JoSQLLogRecordFilter(Query q)
Init this filter with the query already built and parsed. |
|
JoSQLLogRecordFilter(String q)
Init this filter with the query. |
|
JoSQLSwingFileFilter(Query q)
Init this file filter with the query already built and parsed. |
|
JoSQLSwingFileFilter(String q)
Init this file filter with the query. |
|
StackTraceElementFilter(Query q)
Init this file filter with the query already built and parsed. |
|
StackTraceElementFilter(String q)
Init this filter with the query. |
Uses of QueryParseException in org.josql.incubator |
---|
Constructors in org.josql.incubator that throw QueryParseException | |
---|---|
FilteredArrayList(String q)
|
|
FilteredArrayList(String q,
Collection c)
|
|
FilteredArrayList(String q,
int cap)
|
Uses of QueryParseException in org.josql.internal |
---|
Methods in org.josql.internal that throw QueryParseException | |
---|---|
void |
Limit.init(Query q)
|
Uses of QueryParseException in org.josql.utils |
---|
Methods in org.josql.utils that throw QueryParseException | |
---|---|
static Object |
ExpressionEvaluator.getValue(String exp,
Object o)
Evaluate the expression against the object passed in and return the value. |
static List |
ExpressionEvaluator.getValues(String exp,
List l)
Evaluate the expression against the list of objects passed in and return the value. |
static boolean |
ExpressionEvaluator.isTrue(String exp,
Object o)
Evaluate the expression against the object passed in. |
void |
JoSQLComparator.setQuery(Query q)
Set a new Query object for use in this filter. |
void |
JoSQLComparator.setQuery(String q)
Set a new Query (string form) for use in this filter. |
Constructors in org.josql.utils that throw QueryParseException | |
---|---|
ExpressionEvaluator(String exp,
Class cl)
Create a new expression evaluator. |
|
ExpressionEvaluator(String exp,
Class cl,
List fhs)
Create a new expression evaluator. |
|
JoSQLComparator(Query q)
Init this file filter with the query already built and parsed. |
|
JoSQLComparator(String q)
Init this filter with the query. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |