All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.flyte.examples.AutoValue_NodeMetadataExampleWorkflow_Output Maven / Gradle / Ivy

There is a newer version: 0.4.60
Show newest version
package org.flyte.examples;

import javax.annotation.processing.Generated;
import org.flyte.flytekit.SdkBindingData;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_NodeMetadataExampleWorkflow_Output extends NodeMetadataExampleWorkflow.Output {

  private final SdkBindingData c;

  AutoValue_NodeMetadataExampleWorkflow_Output(
      SdkBindingData c) {
    if (c == null) {
      throw new NullPointerException("Null c");
    }
    this.c = c;
  }

  @Override
  public SdkBindingData c() {
    return c;
  }

  @Override
  public String toString() {
    return "Output{"
        + "c=" + c
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof NodeMetadataExampleWorkflow.Output) {
      NodeMetadataExampleWorkflow.Output that = (NodeMetadataExampleWorkflow.Output) o;
      return this.c.equals(that.c());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= c.hashCode();
    return h$;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy