org.flyte.examples.AutoValue_RemoteLaunchPlanExample_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_RemoteLaunchPlanExample_Input extends RemoteLaunchPlanExample.Input {
private final SdkBindingData fib0;
private final SdkBindingData fib1;
AutoValue_RemoteLaunchPlanExample_Input(
SdkBindingData fib0,
SdkBindingData fib1) {
if (fib0 == null) {
throw new NullPointerException("Null fib0");
}
this.fib0 = fib0;
if (fib1 == null) {
throw new NullPointerException("Null fib1");
}
this.fib1 = fib1;
}
@Override
SdkBindingData fib0() {
return fib0;
}
@Override
SdkBindingData fib1() {
return fib1;
}
@Override
public String toString() {
return "Input{"
+ "fib0=" + fib0 + ", "
+ "fib1=" + fib1
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof RemoteLaunchPlanExample.Input) {
RemoteLaunchPlanExample.Input that = (RemoteLaunchPlanExample.Input) o;
return this.fib0.equals(that.fib0())
&& this.fib1.equals(that.fib1());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= fib0.hashCode();
h$ *= 1000003;
h$ ^= fib1.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy