org.flyte.examples.AutoValue_GreetTask_Input Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flytekit-examples Show documentation
Show all versions of flytekit-examples Show documentation
Examples of Tasks, Workflows and Launch plans written in Java.
package org.flyte.examples;
import javax.annotation.processing.Generated;
import org.flyte.flytekit.SdkBindingData;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_GreetTask_Input extends GreetTask.Input {
private final SdkBindingData name;
AutoValue_GreetTask_Input(
SdkBindingData name) {
if (name == null) {
throw new NullPointerException("Null name");
}
this.name = name;
}
@Override
public SdkBindingData name() {
return name;
}
@Override
public String toString() {
return "Input{"
+ "name=" + name
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof GreetTask.Input) {
GreetTask.Input that = (GreetTask.Input) o;
return this.name.equals(that.name());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= name.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy