org.flyte.examples.AutoValue_SimpleStructTask_Output 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.api.v1.Struct;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_SimpleStructTask_Output extends SimpleStructTask.Output {
private final Struct out;
AutoValue_SimpleStructTask_Output(
Struct out) {
if (out == null) {
throw new NullPointerException("Null out");
}
this.out = out;
}
@Override
public Struct out() {
return out;
}
@Override
public String toString() {
return "Output{"
+ "out=" + out
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof SimpleStructTask.Output) {
SimpleStructTask.Output that = (SimpleStructTask.Output) o;
return this.out.equals(that.out());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= out.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy