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

com.powsybl.sld.cgmes.dl.iidm.extensions.DiagramPoint Maven / Gradle / Ivy

There is a newer version: 4.5.1
Show 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.sld.cgmes.dl.iidm.extensions;

import java.util.Objects;

/**
 *
 * @author Massimo Ferraro {@literal }
 */
public class DiagramPoint implements Comparable {

    final double x;
    final double y;
    final int seq;

    public DiagramPoint(double x, double y, int seq) {
        this.x = x;
        this.y = y;
        this.seq = seq;
    }

    public double getX() {
        return x;
    }

    public double getY() {
        return y;
    }

    public int getSeq() {
        return seq;
    }

    @Override
    public int hashCode() {
        return Objects.hash(x, y, seq);
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (obj instanceof DiagramPoint) {
            return ((DiagramPoint) obj).compareTo(this) == 0;
        }
        return false;
    }

    @Override
    public int compareTo(DiagramPoint point) {
        return this.seq - point.seq;
    }

    @Override
    public String toString() {
        return "[" + String.join(",", Double.toString(x), Double.toString(y), Integer.toString(seq)) + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy