blob: abba47b33ff2eb2d82c2fc660f31b2aa67bea46a [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.oodt.xmlps.queryparser;
/**
*
* Constant met keys used in parsing the XMLQuery.
*/
public interface ParseConstants {
public final static String XMLQUERY_LOGOP = "LOGOP";
public final static String XMLQUERY_AND = "AND";
public final static String XMLQUERY_OR = "OR";
public final static String XMLQUERY_RELOP = "RELOP";
public final static String XMLQUERY_EQUAL = "EQ";
public final static String XMLQUERY_LIKE = "LIKE";
public final static String XMLQUERY_GREATER_THAN = "GT";
public final static String XMLQUERY_GREATER_THAN_OR_EQUAL_TO = "GE";
public final static String XMLQUERY_LESS_THAN = "LT";
public final static String XMLQUERY_LESS_THAN_OR_EQUAL_TO = "LE";
public final static String XMLQUERY_LITERAL = "LITERAL";
public final static String SQL_LIKE = "LIKE";
public final static String SQL_EQUAL = "=";
public final static String SQL_AND = "AND";
public final static String SQL_OR = "OR";
public final static String SQL_GREATER_THAN_OR_EQUAL_TO = ">=";
public final static String SQL_GREATER_THAN = ">";
public final static String SQL_LESS_THAN = "<";
public final static String SQL_LESS_THAN_OR_EQUAL_TO = "<=";
}