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

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

The newest version!
package io.sundr.model;

public class BinaryExpression implements Expression {

  private final Expression left;
  private final Expression right;

  public BinaryExpression(Expression left, Expression right) {
    this.left = left;
    this.right = right;
  }

  public String getSymbol() {
    return "";
  }

  public Expression getLeft() {
    return left;
  }

  public Expression getRight() {
    return right;
  }

  public String render() {
    return left.render() + " " + getSymbol() + " " + right.render();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy