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

net.intelie.pipes.AbstractRowList Maven / Gradle / Ivy

There is a newer version: 0.25.5
Show newest version
package net.intelie.pipes;

import net.intelie.pipes.util.Iterables;

public abstract class AbstractRowList implements RowList {
    private static final long serialVersionUID = 1L;

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof RowList)) return false;

        RowList rows = (RowList) o;

        return Iterables.equals(this, rows);
    }

    @Override
    public int hashCode() {
        return Iterables.hash(this);
    }

    @Override
    public String toString() {
        return "[" + Iterables.join(", ", this) + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy