org.influxdb.querybuilder.Function 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 Function {
private final String name;
private final Object[] parameters;
Function(final String name, final Object... parameters) {
this.name = name;
this.parameters = parameters;
}
public String getName() {
return name;
}
public Object[] getParameters() {
return parameters;
}
}