
org.flyte.examples.AutoValue_AllInputsTask_Nested Maven / Gradle / Ivy
package org.flyte.examples;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_AllInputsTask_Nested extends AllInputsTask.Nested {
private final String hello;
private final String world;
AutoValue_AllInputsTask_Nested(
String hello,
String world) {
if (hello == null) {
throw new NullPointerException("Null hello");
}
this.hello = hello;
if (world == null) {
throw new NullPointerException("Null world");
}
this.world = world;
}
@Override
public String hello() {
return hello;
}
@Override
public String world() {
return world;
}
@Override
public String toString() {
return "Nested{"
+ "hello=" + hello + ", "
+ "world=" + world
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof AllInputsTask.Nested) {
AllInputsTask.Nested that = (AllInputsTask.Nested) o;
return this.hello.equals(that.hello())
&& this.world.equals(that.world());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= hello.hashCode();
h$ *= 1000003;
h$ ^= world.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy