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

com.gs.dmn.feel.OperatorTableInputEntry Maven / Gradle / Ivy

There is a newer version: 8.7.3
Show newest version
/*
 * Copyright 2016 Goldman Sachs.
 *
 * 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 com.gs.dmn.feel;

import com.gs.dmn.el.analysis.semantics.type.Type;

import java.util.Objects;

class OperatorTableInputEntry {
    private final String operator;
    private final Type leftOperandType;
    private final Type rightOperandType;

    OperatorTableInputEntry(String operator, Type leftOperandType, Type rightOperandType) {
        this.operator = operator;
        this.leftOperandType = leftOperandType;
        this.rightOperandType = rightOperandType;
    }

    public String getOperator() {
        return operator;
    }

    public Type getLeftOperandType() {
        return leftOperandType;
    }

    public Type getRightOperandType() {
        return rightOperandType;
    }

    public boolean equivalentTo(OperatorTableInputEntry other) {
        return this.operator.equals(other.operator)
                && com.gs.dmn.el.analysis.semantics.type.Type.equivalentTo(this.leftOperandType, other.leftOperandType)
                && com.gs.dmn.el.analysis.semantics.type.Type.equivalentTo(this.rightOperandType, other.rightOperandType);
    }

    public boolean conformsTo(OperatorTableInputEntry other) {
        return this.operator.equals(other.operator)
                && com.gs.dmn.el.analysis.semantics.type.Type.conformsTo(this.leftOperandType, other.leftOperandType)
                && com.gs.dmn.el.analysis.semantics.type.Type.conformsTo(this.rightOperandType, other.rightOperandType);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        OperatorTableInputEntry that = (OperatorTableInputEntry) o;

        return Objects.equals(operator, that.operator)
            && com.gs.dmn.el.analysis.semantics.type.Type.conformsTo(leftOperandType, that.leftOperandType)
            && com.gs.dmn.el.analysis.semantics.type.Type.conformsTo(rightOperandType, that.rightOperandType);
    }

    @Override
    public int hashCode() {
        int result = operator != null ? operator.hashCode() : 0;
        result = 31 * result + (leftOperandType != null ? leftOperandType.hashCode() : 0);
        result = 31 * result + (rightOperandType != null ? rightOperandType.hashCode() : 0);
        return result;
    }

    @Override
    public String toString() {
        return String.format("%s(%s, %s)", operator, leftOperandType, rightOperandType);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy