![JAR search and dependency download from the Maven repository](/logo.png)
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 - 2025 Weber Informatics LLC | Privacy Policy