Interface AggregableMap<K,​V>

  • All Superinterfaces:
    Map<K,​V>
    All Known Implementing Classes:
    Table.Row

    public interface AggregableMap<K,​V>
    extends Map<K,​V>
    • Method Detail

      • getAggregated

        V getAggregated​(K key,
                        String function,
                        int n,
                        List<K> blockIndicatorKeys)

        Gets the aggregate field value after applying a "window transformation" to the current position.

        Parameters:
        key - The field name.
        function - The aggregation function name. The implementation should recognize and support all Lag.Aggregate enum constant values (except for the `none` value).
        n - The window size.
        blockIndicatorKeys - Block indicator field names.
        Returns:
        The aggregate field value.