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

tech.tablesaw.plotly.components.change.Decreasing Maven / Gradle / Ivy

package tech.tablesaw.plotly.components.change;

public class Decreasing extends Change {

  private Decreasing(DecreasingBuilder builder) {
    super(builder);
  }

  public static DecreasingBuilder builder() {
    return new DecreasingBuilder();
  }

  public static class DecreasingBuilder extends ChangeBuilder {

    @Override
    public DecreasingBuilder fillColor(String color) {
      this.fillColor = color;
      return this;
    }

    @Override
    public DecreasingBuilder changeLine(ChangeLine line) {
      this.changeLine = line;
      return this;
    }

    public Decreasing build() {
      return new Decreasing(this);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy