io.deephaven.api.agg.spec.AggSpecGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-table-api Show documentation
Show all versions of deephaven-table-api Show documentation
The Deephaven table operations API
The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.api.agg.spec;
import io.deephaven.annotations.SingletonStyle;
import org.immutables.value.Value.Immutable;
/**
* Specifies an aggregation that outputs each group of input values as a Deephaven vector (io.deephaven.vector.Vector).
*
* @see io.deephaven.api.TableOperations#groupBy
*/
@Immutable
@SingletonStyle
public abstract class AggSpecGroup extends AggSpecEmptyBase {
public static AggSpecGroup of() {
return ImmutableAggSpecGroup.of();
}
@Override
public final String description() {
return "group";
}
@Override
public final V walk(V visitor) {
visitor.visit(this);
return visitor;
}
}