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

io.sundr.model.VoidRefFluent Maven / Gradle / Ivy

There is a newer version: 0.200.3
Show newest version
package io.sundr.model;

import java.lang.SuppressWarnings;
import java.lang.Object;
import java.lang.String;

/**
 * Generated
 */
@SuppressWarnings("unchecked")
public class VoidRefFluent> extends TypeRefFluent{
  public VoidRefFluent() {
  }
  
  public VoidRefFluent(VoidRef instance) {
    this.copyInstance(instance);
  }
  
  
  protected void copyInstance(VoidRef instance) {
    instance = (instance != null ? instance : new VoidRef());
    if (instance != null) {
          this.withAttributes(instance.getAttributes());
        }
  }
  
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    if (!super.equals(o)) return false;
    VoidRefFluent that = (VoidRefFluent) o;
    return true;
  }
  
  public int hashCode() {
    return java.util.Objects.hash(super.hashCode());
  }
  
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    sb.append("}");
    return sb.toString();
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy