io.dekorate.helm.config.HelmExpression Maven / Gradle / Ivy
package io.dekorate.helm.config;
import java.lang.Object;
import java.lang.String;
import io.sundr.builder.annotations.Buildable;
/**
* Generated
*/
@Buildable(builderPackage = "io.fabric8.kubernetes.api.builder")
public class HelmExpression{
public HelmExpression() {
}
public HelmExpression(String path,String expression) {
this.path = path;
this.expression = expression;
}
private String path;
private String expression;
public String getPath() {
return this.path;
}
public String getExpression() {
return this.expression;
}
public static HelmExpressionBuilder newBuilder() {
return new HelmExpressionBuilder();
}
public static HelmExpressionBuilder newBuilderFromDefaults() {
return new HelmExpressionBuilder();
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
HelmExpression that = (HelmExpression) o;
if (path != null ? !path.equals(that.path) :that.path != null) return false;
if (expression != null ? !expression.equals(that.expression) :that.expression != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(path, expression, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy