org.influxdb.querybuilder.clauses.RawFromClause Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of influxdb-java Show documentation
Show all versions of influxdb-java Show documentation
Java API to access the InfluxDB REST API
package org.influxdb.querybuilder.clauses;
public class RawFromClause extends FromClause {
private final String text;
public RawFromClause(final String text) {
if (text == null) {
throw new IllegalArgumentException("Provide a valid value");
}
this.text = text;
}
@Override
public void appendTo(final StringBuilder stringBuilder) {
stringBuilder.append(text);
}
}