
io.sundr.model.BreakFluent Maven / Gradle / Ivy
The newest version!
package io.sundr.model;
import java.lang.SuppressWarnings;
import io.sundr.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class BreakFluent> extends BaseFluent{
public BreakFluent() {
}
public BreakFluent(Break instance) {
this.copyInstance(instance);
}
protected void copyInstance(Break instance) {
instance = (instance != null ? instance : new Break());
if (instance != null) {
}
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
BreakFluent that = (BreakFluent) 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