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