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

xyz.jpenilla.squaremap.api.marker.Rectangle Maven / Gradle / Ivy

package xyz.jpenilla.squaremap.api.marker;

import java.util.Objects;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;
import xyz.jpenilla.squaremap.api.Point;

/**
 * Rectangle marker
 */
public final class Rectangle extends Marker {

    private Point point1;
    private Point point2;

    Rectangle(final @NonNull Point point1, final @NonNull Point point2) {
        this.point1 = point1;
        this.point2 = point2;
    }

    public void points(final @NonNull Point point1, final @NonNull Point point2) {
        this.point1 = point1;
        this.point2 = point2;
    }

    /**
     * Get the first corner point for this rectangle
     *
     * @return point1
     */
    public @NonNull Point point1() {
        return this.point1;
    }

    /**
     * Set the first corner point for this rectangle
     *
     * @param point new point
     */
    public void point1(final @NonNull Point point) {
        this.point1 = point;
    }

    /**
     * Get the second corner point for this rectangle
     *
     * @return point2
     */
    public @NonNull Point point2() {
        return this.point2;
    }

    /**
     * Set the second corner point for this rectangle
     *
     * @param point new point
     */
    public void point2(final @NonNull Point point) {
        this.point2 = point;
    }

    @Override
    public boolean equals(final @Nullable Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || this.getClass() != o.getClass()) {
            return false;
        }
        final @Nullable Rectangle rectangle = (Rectangle) o;
        return this.markerOptionsMatch(rectangle)
            && this.point1.equals(rectangle.point1)
            && this.point2.equals(rectangle.point2);
    }

    @Override
    public int hashCode() {
        return Objects.hash(this.markerOptions(), this.point1, this.point2);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy