public boolean equals()

in athena-federation-sdk/src/main/java/com/amazonaws/athena/connector/lambda/metadata/GetSplitsRequest.java [204:228]


    public boolean equals(Object o)
    {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        GetSplitsRequest that = (GetSplitsRequest) o;

        Objects.equal(this.tableName, that.tableName);
        Objects.equal(this.partitions, that.partitions);
        CollectionsUtils.equals(this.partitionCols, that.partitionCols);
        Objects.equal(this.continuationToken, that.continuationToken);
        Objects.equal(this.getRequestType(), that.getRequestType());
        Objects.equal(this.getCatalogName(), that.getCatalogName());

        return Objects.equal(this.tableName, that.tableName) &&
                Objects.equal(this.partitions, that.partitions) &&
                CollectionsUtils.equals(this.partitionCols, that.partitionCols) &&
                Objects.equal(this.continuationToken, that.continuationToken) &&
                Objects.equal(this.getRequestType(), that.getRequestType()) &&
                Objects.equal(this.getCatalogName(), that.getCatalogName());
    }