All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.oak.spi.query.QueryConstants Maven / Gradle / Ivy

There is a newer version: 1.62.0
Show newest version
/*
 * 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.jackrabbit.oak.spi.query;

public abstract class QueryConstants {

    /**
     * Name of the property restriction used to express query performed
     * via NAME and LOCALNAME functions
     */
    public static final String RESTRICTION_LOCAL_NAME = ":localname";

    /**
     * Name of the property restriction used to express query performed
     * via NAME and LOCALNAME functions
     */
    public static final String RESTRICTION_NAME = ":name";

    /**
     * The prefix for restrictions for function-based indexes, for example
     * upper(propertyName). Syntax: "function*expression". In order to support
     * all kinds of expressions in the future (including nested expressions and
     * so on), the format for the expression is written in the Polish notation
     * (the RPN, reversed), with "*" as delimiter (as property names may not
     * contain "*"), and "@" in front of each property name to distinguish
     * between property names and functions. Literals are quoted. Examples: The
     * expression "lower(lastName)" is converted to "function*lower {@literal @}
     * lastName". The expression "lower(lastName)" is converted to
     * "lower(upper(lastName))" is converted to "function*lower*upper*
     * {@literal @}lastName". The condition
     * "firstName+' '+lastName = 'Tim Cook'" would be "function*+*+ {@literal @}
     * firstName*' ' {@literal @}lastName.
     */
    public static final String FUNCTION_RESTRICTION_PREFIX = "function*";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy