org.influxdb.querybuilder.clauses.SelectRegexClause 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
The newest version!
package org.influxdb.querybuilder.clauses;
public class SelectRegexClause extends AbstractClause {
public SelectRegexClause(final String clause) {
super(clause);
}
@Override
public void appendTo(final StringBuilder stringBuilder) {
stringBuilder.append(name);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy