org.graylog2.indexer.indices.events.$AutoValue_IndicesReopenedEvent 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_IndicesReopenedEvent extends IndicesReopenedEvent {
private final Set indices;
$AutoValue_IndicesReopenedEvent(
Set indices) {
if (indices == null) {
throw new NullPointerException("Null indices");
}
this.indices = indices;
}
@Override
public Set indices() {
return indices;
}
@Override
public String toString() {
return "IndicesReopenedEvent{"
+ "indices=" + indices
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof IndicesReopenedEvent) {
IndicesReopenedEvent that = (IndicesReopenedEvent) 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