org.influxdb.querybuilder.Alias 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 Alias {
private final Object column;
private final String alias;
public Alias(final Object column, final String alias) {
this.column = column;
this.alias = alias;
}
public Object getColumn() {
return column;
}
public String getAlias() {
return alias;
}
}