Return-Path: Delivered-To: apmail-incubator-oodt-commits-archive@minotaur.apache.org Received: (qmail 39570 invoked from network); 24 Sep 2010 05:11:44 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 Sep 2010 05:11:44 -0000 Received: (qmail 94544 invoked by uid 500); 24 Sep 2010 05:11:44 -0000 Delivered-To: apmail-incubator-oodt-commits-archive@incubator.apache.org Received: (qmail 94485 invoked by uid 500); 24 Sep 2010 05:11:43 -0000 Mailing-List: contact oodt-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: oodt-dev@incubator.apache.org Delivered-To: mailing list oodt-commits@incubator.apache.org Received: (qmail 94408 invoked by uid 99); 24 Sep 2010 05:11:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Sep 2010 05:11:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Sep 2010 05:11:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 538E12388CAD; Fri, 24 Sep 2010 05:10:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1000710 [16/44] - in /incubator/oodt/site/components/maven: apidocs/org/apache/oodt/grid/ apidocs/org/apache/oodt/grid/class-use/ apidocs/org/apache/oodt/profile/handlers/cas/ apidocs/org/apache/oodt/profile/handlers/cas/class-use/ apidocs... Date: Fri, 24 Sep 2010 05:09:57 -0000 To: oodt-commits@incubator.apache.org From: mattmann@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100924051046.538E12388CAD@eris.apache.org> Added: incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/LogOpExpression.html URL: http://svn.apache.org/viewvc/incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/LogOpExpression.html?rev=1000710&view=auto ============================================================================== --- incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/LogOpExpression.html (added) +++ incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/LogOpExpression.html Fri Sep 24 05:09:48 2010 @@ -0,0 +1,226 @@ + + +LogOpExpression (Apache OODT 0.1-incubating API) + + + + + +
+ + + + + + + +
+ +
+ + +

+ +org.apache.oodt.xmlps.queryparser +
+Class LogOpExpression

+
+java.lang.Object
+  extended by org.apache.oodt.xmlps.queryparser.LogOpExpression
+
+
All Implemented Interfaces:
Expression
+
Direct Known Subclasses:
AndExpression, OrExpression
+

public class LogOpExpression
extends Object
implements Expression

+A logical expression with a left-hand side + and right hind-side Expression. +

+ +

+


+ + + + +

+ +
+Constructor Summary
LogOpExpression(String logop, + Expression lhs, + Expression rhs) + +
+           
+  + + + + + + + + + + + + + + +
+Method Summary
+ Stringevaluate() + +
+          Defines how to turn this Expression into a String-readable query to an + underlying SQL database.
+ ExpressiongetLhs() + +
+           
+ ExpressiongetRhs() + +
+           
+ voidsetLhs(Expression lhs) + +
+           
+ voidsetRhs(Expression rhs) + +
+           
+ 
+ + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + +

+
+Constructor Detail

+LogOpExpression

+
+public LogOpExpression(String logop,
+                       Expression lhs,
+                       Expression rhs)
+
+ +
+Method Detail

+evaluate

+
+public String evaluate()
+
Description copied from interface: Expression
+
Defines how to turn this Expression into a String-readable query to an + underlying SQL database. +

+

Specified by:
evaluate in interface Expression
+
Returns:
A String-readable version of this Expression.
+

+getLhs

+
+public Expression getLhs()
+
+
Returns:
the lhs
+

+setLhs

+
+public void setLhs(Expression lhs)
+
+
Parameters:
lhs - the lhs to set
+

+getRhs

+
+public Expression getRhs()
+
+
Returns:
the rhs
+

+setRhs

+
+public void setRhs(Expression rhs)
+
+
Parameters:
rhs - the rhs to set
+

+ + + + + + + +
+ +
+ + +
+Copyright © 1999-2010
Apache Incubator. All Rights Reserved. + + \ No newline at end of file Added: incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/OrExpression.html URL: http://svn.apache.org/viewvc/incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/OrExpression.html?rev=1000710&view=auto ============================================================================== --- incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/OrExpression.html (added) +++ incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/OrExpression.html Fri Sep 24 05:09:48 2010 @@ -0,0 +1,169 @@ + + +OrExpression (Apache OODT 0.1-incubating API) + + + + + +
+ + + + + + + +
+ +
+ + +

+ +org.apache.oodt.xmlps.queryparser +
+Class OrExpression

+
+java.lang.Object
+  extended by org.apache.oodt.xmlps.queryparser.LogOpExpression
+      extended by org.apache.oodt.xmlps.queryparser.OrExpression
+
+
All Implemented Interfaces:
Expression, ParseConstants
+

public class OrExpression
extends LogOpExpression
implements ParseConstants

+An Or expression. +

+ +

+


+ + + +

+
+Field Summary
+  + + +
Fields inherited from interface org.apache.oodt.xmlps.queryparser.ParseConstants
SQL_AND, SQL_EQUAL, SQL_GREATER_THAN, SQL_GREATER_THAN_OR_EQUAL_TO, SQL_LESS_THAN, SQL_LESS_THAN_OR_EQUAL_TO, SQL_LIKE, SQL_OR, XMLQUERY_AND, XMLQUERY_EQUAL, XMLQUERY_GREATER_THAN, XMLQUERY_GREATER_THAN_OR_EQUAL_TO, XMLQUERY_LESS_THAN, XMLQUERY_LESS_THAN_OR_EQUAL_TO, XMLQUERY_LIKE, XMLQUERY_LITERAL, XMLQUERY_LOGOP, XMLQUERY_OR, XMLQUERY_RELOP
+  + + +
+ + +
+Constructor Summary
OrExpression(Expression lhs, + Expression rhs) + +
+           
+  + + +
+ +
+Method Summary
+ 
+ + +
Methods inherited from class org.apache.oodt.xmlps.queryparser.LogOpExpression
evaluate, getLhs, getRhs, setLhs, setRhs
+ 
+ + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + +

+
+Constructor Detail

+OrExpression

+
+public OrExpression(Expression lhs,
+                    Expression rhs)
+

+ + + + + + + +
+ +
+ + +
+Copyright © 1999-2010
Apache Incubator. All Rights Reserved. + + \ No newline at end of file Added: incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/ParseConstants.html URL: http://svn.apache.org/viewvc/incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/ParseConstants.html?rev=1000710&view=auto ============================================================================== --- incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/ParseConstants.html (added) +++ incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/ParseConstants.html Fri Sep 24 05:09:48 2010 @@ -0,0 +1,318 @@ + + +ParseConstants (Apache OODT 0.1-incubating API) + + + + + +
+ + + + + + + +
+ +
+ + +

+ +org.apache.oodt.xmlps.queryparser +
+Interface ParseConstants

+
All Known Implementing Classes:
AndExpression, ContainsExpression, EqualsExpression, GreaterThanEqualsExpression, GreaterThanExpression, HandlerQueryParser, LessThanEqualsExpression, LessThanExpression, OrExpression
+

public interface ParseConstants

+Constant met keys used in parsing the XMLQuery. +

+ +

+


+ + + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static StringSQL_AND + +
+           
+static StringSQL_EQUAL + +
+           
+static StringSQL_GREATER_THAN + +
+           
+static StringSQL_GREATER_THAN_OR_EQUAL_TO + +
+           
+static StringSQL_LESS_THAN + +
+           
+static StringSQL_LESS_THAN_OR_EQUAL_TO + +
+           
+static StringSQL_LIKE + +
+           
+static StringSQL_OR + +
+           
+static StringXMLQUERY_AND + +
+           
+static StringXMLQUERY_EQUAL + +
+           
+static StringXMLQUERY_GREATER_THAN + +
+           
+static StringXMLQUERY_GREATER_THAN_OR_EQUAL_TO + +
+           
+static StringXMLQUERY_LESS_THAN + +
+           
+static StringXMLQUERY_LESS_THAN_OR_EQUAL_TO + +
+           
+static StringXMLQUERY_LIKE + +
+           
+static StringXMLQUERY_LITERAL + +
+           
+static StringXMLQUERY_LOGOP + +
+           
+static StringXMLQUERY_OR + +
+           
+static StringXMLQUERY_RELOP + +
+           
+  +

+ + + + +

+
+Field Detail

+XMLQUERY_LOGOP

+
+static final String XMLQUERY_LOGOP
+
See Also:
Constant Field Values

+XMLQUERY_AND

+
+static final String XMLQUERY_AND
+
See Also:
Constant Field Values

+XMLQUERY_OR

+
+static final String XMLQUERY_OR
+
See Also:
Constant Field Values

+XMLQUERY_RELOP

+
+static final String XMLQUERY_RELOP
+
See Also:
Constant Field Values

+XMLQUERY_EQUAL

+
+static final String XMLQUERY_EQUAL
+
See Also:
Constant Field Values

+XMLQUERY_LIKE

+
+static final String XMLQUERY_LIKE
+
See Also:
Constant Field Values

+XMLQUERY_GREATER_THAN

+
+static final String XMLQUERY_GREATER_THAN
+
See Also:
Constant Field Values

+XMLQUERY_GREATER_THAN_OR_EQUAL_TO

+
+static final String XMLQUERY_GREATER_THAN_OR_EQUAL_TO
+
See Also:
Constant Field Values

+XMLQUERY_LESS_THAN

+
+static final String XMLQUERY_LESS_THAN
+
See Also:
Constant Field Values

+XMLQUERY_LESS_THAN_OR_EQUAL_TO

+
+static final String XMLQUERY_LESS_THAN_OR_EQUAL_TO
+
See Also:
Constant Field Values

+XMLQUERY_LITERAL

+
+static final String XMLQUERY_LITERAL
+
See Also:
Constant Field Values

+SQL_LIKE

+
+static final String SQL_LIKE
+
See Also:
Constant Field Values

+SQL_EQUAL

+
+static final String SQL_EQUAL
+
See Also:
Constant Field Values

+SQL_AND

+
+static final String SQL_AND
+
See Also:
Constant Field Values

+SQL_OR

+
+static final String SQL_OR
+
See Also:
Constant Field Values

+SQL_GREATER_THAN_OR_EQUAL_TO

+
+static final String SQL_GREATER_THAN_OR_EQUAL_TO
+
See Also:
Constant Field Values

+SQL_GREATER_THAN

+
+static final String SQL_GREATER_THAN
+
See Also:
Constant Field Values

+SQL_LESS_THAN

+
+static final String SQL_LESS_THAN
+
See Also:
Constant Field Values

+SQL_LESS_THAN_OR_EQUAL_TO

+
+static final String SQL_LESS_THAN_OR_EQUAL_TO
+
See Also:
Constant Field Values

+ + + + + + + +
+ +
+ + +
+Copyright © 1999-2010
Apache Incubator. All Rights Reserved. + + \ No newline at end of file Added: incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/RelOpExpression.html URL: http://svn.apache.org/viewvc/incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/RelOpExpression.html?rev=1000710&view=auto ============================================================================== --- incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/RelOpExpression.html (added) +++ incubator/oodt/site/components/maven/apidocs/org/apache/oodt/xmlps/queryparser/RelOpExpression.html Fri Sep 24 05:09:48 2010 @@ -0,0 +1,225 @@ + + +RelOpExpression (Apache OODT 0.1-incubating API) + + + + + +
+ + + + + + + +
+ +
+ + +

+ +org.apache.oodt.xmlps.queryparser +
+Class RelOpExpression

+
+java.lang.Object
+  extended by org.apache.oodt.xmlps.queryparser.RelOpExpression
+
+
All Implemented Interfaces:
Expression
+
Direct Known Subclasses:
ContainsExpression, EqualsExpression, GreaterThanEqualsExpression, GreaterThanExpression, LessThanEqualsExpression, LessThanExpression
+

public class RelOpExpression
extends Object
implements Expression

+A relational operator. +

+ +

+


+ + + + +

+ +
+Constructor Summary
RelOpExpression(String relop, + String lhs, + Expression literal) + +
+           
+  + + + + + + + + + + + + + + +
+Method Summary
+ Stringevaluate() + +
+          Defines how to turn this Expression into a String-readable query to an + underlying SQL database.
+ StringgetLhs() + +
+           
+ ExpressiongetLiteral() + +
+           
+ voidsetLhs(String lhs) + +
+           
+ voidsetLiteral(Expression literal) + +
+           
+ 
+ + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + +

+
+Constructor Detail

+RelOpExpression

+
+public RelOpExpression(String relop,
+                       String lhs,
+                       Expression literal)
+
+ +
+Method Detail

+evaluate

+
+public String evaluate()
+
Description copied from interface: Expression
+
Defines how to turn this Expression into a String-readable query to an + underlying SQL database. +

+

Specified by:
evaluate in interface Expression
+
Returns:
A String-readable version of this Expression.
+

+getLhs

+
+public String getLhs()
+
+
Returns:
the lhs
+

+setLhs

+
+public void setLhs(String lhs)
+
+
Parameters:
lhs - the lhs to set
+

+getLiteral

+
+public Expression getLiteral()
+
+
Returns:
the literal
+

+setLiteral

+
+public void setLiteral(Expression literal)
+
+
Parameters:
literal - the literal to set
+

+ + + + + + + +
+ +
+ + +
+Copyright © 1999-2010
Apache Incubator. All Rights Reserved. + + \ No newline at end of file