org.graylog2.indexer.indices.events.$AutoValue_IndicesClosedEvent Maven / Gradle / Ivy
package org.graylog2.indexer.indices.events;
import java.util.Set;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_IndicesClosedEvent extends IndicesClosedEvent {
private final Set indices;
$AutoValue_IndicesClosedEvent(
Set indices) {
if (indices == null) {
throw new NullPointerException("Null indices");
}
this.indices = indices;
}
@Override
public Set indices() {
return indices;
}
@Override
public String toString() {
return "IndicesClosedEvent{"
+ "indices=" + indices
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof IndicesClosedEvent) {
IndicesClosedEvent that = (IndicesClosedEvent) o;
return this.indices.equals(that.indices());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= indices.hashCode();
return h$;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy