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

org.influxdb.querybuilder.RawText Maven / Gradle / Ivy

package org.influxdb.querybuilder;

public class RawText implements Appendable {

  private final String text;

  public RawText(final String text) {
    this.text = text;
  }

  @Override
  public void appendTo(final StringBuilder stringBuilder) {
    stringBuilder.append(text);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy