blob: 252f23cbf7880e910babff9c5ab1dd3e1ac1d248 [file] [log] [blame]
/*
* Copyright 2009-2010 by The Regents of the University of California
* 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 from
*
* 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 edu.uci.ics.hyracks.algebricks.core.algebra.functions;
public final class FunctionIdentifier {
final private String namespace;
final private String name;
final private boolean isBuiltin;
final private int arity;
public final static int VARARGS = -1;
public FunctionIdentifier(String namespace, String name, boolean isBuiltin) {
this.namespace = namespace;
this.name = name;
this.arity = VARARGS;
this.isBuiltin = isBuiltin;
}
public FunctionIdentifier(String namespace, String name, int arity, boolean isBuiltin) {
this.namespace = namespace;
this.name = name;
this.arity = arity;
this.isBuiltin = isBuiltin;
}
public String getName() {
return name;
}
public boolean isBuiltin() {
return isBuiltin;
}
@Override
public boolean equals(Object o) {
if (super.equals(o)) {
return true;
}
if (o instanceof FunctionIdentifier) {
FunctionIdentifier ofi = (FunctionIdentifier) o;
return ofi.getNamespace().equals(getNamespace()) && ofi.name.equals(name);
}
return false;
}
@Override
public int hashCode() {
return name.hashCode() + namespace.hashCode();
}
public String toString() {
return getNamespace() + ":" + name;
}
public int getArity() {
return arity;
}
public String getNamespace() {
return namespace;
}
}