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

com.google.zetasql.AutoValue_TableContent Maven / Gradle / Ivy

There is a newer version: 2024.11.1
Show newest version
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