/* * #! * Ontopia Engine * #- * Copyright (C) 2001 - 2013 The Ontopia Project * #- * 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. * !# */ package net.ontopia.persistence.query.sql; /** * INTERNAL: SQL condition: equals (=) */ public class SQLEquals implements SQLExpressionIF { protected SQLValueIF left; protected SQLValueIF right; public SQLEquals() { } public SQLEquals(SQLValueIF left, SQLValueIF right) { // Complain if arities are different if (left.getArity() != right.getArity()) throw new IllegalArgumentException("Arities of values are not identical: " + left + " (arity " + left.getArity() +") " + right + " (arity " + right.getArity() +")"); //! if (left.equals(right)) //! throw new IllegalArgumentException("Left == right: " + left + " == " + right); this.left = left; this.right = right; } public int getType() { return EQUALS; } public SQLValueIF getLeft() { return left; } public void setLeft(SQLValueIF left) { this.left = left; } public SQLValueIF getRight() { return right; } public void setRight(SQLValueIF right) { this.right = right; } public String toString() { return getLeft() + " = " + getRight(); } }