com.google.cloud.bigquery.$AutoValue_Annotations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-bigquery Show documentation
Show all versions of google-cloud-bigquery Show documentation
Java idiomatic client for Google Cloud BigQuery.
package com.google.cloud.bigquery;
import java.util.Map;
import javax.annotation.Generated;
import javax.annotation.Nullable;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_Annotations extends Annotations {
@Nullable
private final Map userMap;
$AutoValue_Annotations(
@Nullable Map userMap) {
this.userMap = userMap;
}
@Nullable
@Override
Map userMap() {
return userMap;
}
@Override
public String toString() {
return "Annotations{"
+ "userMap=" + userMap
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Annotations) {
Annotations that = (Annotations) o;
return (this.userMap == null ? that.userMap() == null : this.userMap.equals(that.userMap()));
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= (userMap == null) ? 0 : userMap.hashCode();
return h$;
}
private static final long serialVersionUID = 1L;
}