![JAR search and dependency download from the Maven repository](/logo.png)
org.influxdb.querybuilder.TimeZone Maven / Gradle / Ivy
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(" ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy