io.sundr.model.XorFluent Maven / Gradle / Ivy
package io.sundr.model;
import java.lang.SuppressWarnings;
import java.lang.Object;
import java.lang.String;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class XorFluent> extends BinaryExpressionFluent{
public XorFluent() {
}
public XorFluent(Xor instance) {
this.copyInstance(instance);
}
protected void copyInstance(Xor instance) {
if (instance != null) {
this.withLeft(instance.getLeft());
this.withRight(instance.getRight());
}
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
XorFluent that = (XorFluent) 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