org.influxdb.querybuilder.TimeZone 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;
public class TimeZone implements Appendable {
private final String timeZone;
TimeZone(final String timeZone) {
this.timeZone = timeZone;
}
@Override
public void appendTo(final StringBuilder stringBuilder) {
stringBuilder
.append(" ")
.append("tz")
.append("(")
.append("'")
.append(timeZone)
.append("'")
.append(")")
.append(" ");
}
}