Commit be74bd58 authored by Sergio Emanuel Rodriguez Rivera's avatar Sergio Emanuel Rodriguez Rivera
Browse files

VertexKey Javadocs

parent 9110abb8
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
package Graph;
import java.util.Arrays;

/**
 * Represents a vertex in a graph using its coordinates as the key.
 */
public class VertexKey {

    /**
     * The coordinates of the vertex.
     */
    private final float[] coords;

    /**
     * Constructs a new {@code VertexKey} instance with the specified coordinates.
     *
     * @param coordinates The coordinates of the vertex. It's assumed that the array represents a point
     *                    in n-dimensional space, where the dimensionality is determined by the array's length.
     */
    public VertexKey(float[] coordinates) {
        this.coords = coordinates;
    }

    /**
     * Compares this vertex key to another object for equality.
     * <p>
     * Two {@code VertexKey} instances are considered equal if their coordinate arrays are equal.
     *
     * @param anotherVertex The object to be compared for equality with this vertex key.
     * @return {@code true} if the specified object is equal to this vertex key; {@code false} otherwise.
     */
    @Override
    public boolean equals(Object anotherVertex) {
        if (anotherVertex == this) {
@@ -23,10 +44,20 @@ public class VertexKey {
        return Arrays.equals(this.coords, vertexKey.coords);
    }

    /**
     * Returns a hash code value for this vertex key.
     *
     * @return A hash code value for this vertex key.
     */
    @Override
    public int hashCode() {
        return Arrays.hashCode(this.coords);
    }

    /**
     * Returns the coordinates of this vertex.
     *
     * @return An array of floats representing the coordinates of this vertex.
     */
    public float[] get() {return this.coords;}
}
 No newline at end of file