org.jooq.impl.AbstractYdbAggregateFunction Maven / Gradle / Ivy
The newest version!
package org.jooq.impl;
import org.jooq.DataType;
import org.jooq.Field;
import org.jooq.Name;
public abstract class AbstractYdbAggregateFunction extends AbstractAggregateFunction {
protected AbstractYdbAggregateFunction(String name, DataType type, Field>... arguments) {
super(name, type, arguments);
}
protected AbstractYdbAggregateFunction(Name name, DataType type, Field>... arguments) {
super(name, type, arguments);
}
protected AbstractYdbAggregateFunction(boolean distinct, String name, DataType type, Field>... arguments) {
super(distinct, name, type, arguments);
}
protected AbstractYdbAggregateFunction(boolean distinct, Name name, DataType type, Field>... arguments) {
super(distinct, name, type, arguments);
}
}