org.graylog.integrations.ipfix.AutoValue_Flow Maven / Gradle / Ivy
package org.graylog.integrations.ipfix;
import com.google.common.collect.ImmutableMap;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_Flow extends Flow {
private final ImmutableMap fields;
AutoValue_Flow(
ImmutableMap fields) {
if (fields == null) {
throw new NullPointerException("Null fields");
}
this.fields = fields;
}
@Override
public ImmutableMap fields() {
return fields;
}
@Override
public String toString() {
return "Flow{"
+ "fields=" + fields
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Flow) {
Flow that = (Flow) o;
return this.fields.equals(that.fields());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= fields.hashCode();
return h$;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy