com.google.zetasql.AutoValue_TableContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zetasql-client Show documentation
Show all versions of zetasql-client Show documentation
Analyzer Framework for SQL
package com.google.zetasql;
import com.google.common.collect.ImmutableList;
import javax.annotation.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_TableContent extends TableContent {
private final ImmutableList> tableData;
AutoValue_TableContent(
ImmutableList> tableData) {
if (tableData == null) {
throw new NullPointerException("Null tableData");
}
this.tableData = tableData;
}
@Override
public ImmutableList> getTableData() {
return tableData;
}
@Override
public String toString() {
return "TableContent{"
+ "tableData=" + tableData
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof TableContent) {
TableContent that = (TableContent) o;
return this.tableData.equals(that.getTableData());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= tableData.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy