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

com.powsybl.openrao.data.cracimpl.AbstractUsageRule Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2019, RTE (http://www.rte-france.com)
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

package com.powsybl.openrao.data.cracimpl;

import com.powsybl.openrao.data.cracapi.usagerule.UsageMethod;
import com.powsybl.openrao.data.cracapi.usagerule.UsageRule;

/**
 * Business object of a usage rule in the CRAC file
 *
 * @author Viktor Terrier {@literal }
 */
public abstract class AbstractUsageRule implements UsageRule {

    protected UsageMethod usageMethod;

    protected AbstractUsageRule(UsageMethod usageMethod) {
        this.usageMethod = usageMethod;
    }

    @Override
    public UsageMethod getUsageMethod() {
        return usageMethod;
    }

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

    @Override
    public int hashCode() {
        return usageMethod.hashCode() * 23;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy