/*
 * Licensed 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.
 *
 * Other licenses:
 * -----------------------------------------------------------------------------
 * Commercial licenses for this work are available. These replace the above
 * ASL 2.0 and offer limited warranties, support, maintenance, and commercial
 * database integrations.
 *
 * For more information, please visit: http://www.jooq.org/licenses
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */
package org.jooq.impl;

import org.jooq.Name;

The operator used in Expression
Author:Lukas Eder
/** * The operator used in <code>Expression</code> * * @author Lukas Eder */
enum ExpressionOperator {
Concatenation
/** * Concatenation */
CONCAT("||", true, false),
Addition
/** * Addition */
ADD("+", true, true),
Subtraction
/** * Subtraction */
SUBTRACT("-"),
Multiplication
/** * Multiplication */
MULTIPLY("*", true, true),
Division
/** * Division */
DIVIDE("/"),
Modulo
/** * Modulo */
MODULO("%"),
Bitwise not
/** * Bitwise not */
BIT_NOT("~"),
Bitwise and
/** * Bitwise and */
BIT_AND("&", true, true),
Bitwise or
/** * Bitwise or */
BIT_OR("|", true, true),
Bitwise xor
/** * Bitwise xor */
BIT_XOR("^", true, true),
Bitwise nand
/** * Bitwise nand */
BIT_NAND("~&"),
Bitwise nor
/** * Bitwise nor */
BIT_NOR("~|"),
Bitwise xor
/** * Bitwise xor */
BIT_XNOR("~^"),
Bitwise shift left
/** * Bitwise shift left */
SHL("<<"),
Bitwise shift right
/** * Bitwise shift right */
SHR(">>"), ; private final String sql; private final Name name; private final boolean associative; private final boolean commutative; private ExpressionOperator(String sql) { this(sql, false, false); } private ExpressionOperator(String sql, boolean associative, boolean commutative) { this.sql = sql; this.name = DSL.name(name().toLowerCase()); this.associative = associative; this.commutative = commutative; } final String toSQL() { return sql; } final Name toName() { return name; } final boolean associative() { return associative; } final boolean commutative() { return commutative; } }