Class BaseObjectUpdateByOperator<T>

java.lang.Object
io.deephaven.engine.table.impl.updateby.UpdateByOperator
io.deephaven.engine.table.impl.updateby.internal.BaseObjectUpdateByOperator<T>
Direct Known Subclasses:
BaseBigNumberEMOperator, BaseBigNumberEmStdOperator, BaseObjectBinaryOperator, BigDecimalCumProdOperator, BigDecimalCumSumOperator, BigDecimalDeltaOperator, BigDecimalRollingAvgOperator, BigDecimalRollingProductOperator, BigDecimalRollingStdOperator, BigDecimalRollingSumOperator, BigDecimalRollingWAvgOperator, BigIntegerCumProdOperator, BigIntegerCumSumOperator, BigIntegerDeltaOperator, BigIntegerRollingAvgOperator, BigIntegerRollingProductOperator, BigIntegerRollingStdOperator, BigIntegerRollingSumOperator, ComparableRollingMinMaxOperator, ObjectFillByOperator

public abstract class BaseObjectUpdateByOperator<T> extends UpdateByOperator
  • Field Details

  • Constructor Details

    • BaseObjectUpdateByOperator

      public BaseObjectUpdateByOperator(@NotNull @NotNull MatchPair pair, @NotNull @NotNull String[] affectingColumns, Class<T> colType)
      Construct a base operator for operations that produce Object outputs.
      Parameters:
      pair - the MatchPair that defines the input/output for this operation
      affectingColumns - a list of all columns (including the input column from the pair) that affects the result of this operator.
    • BaseObjectUpdateByOperator

      public BaseObjectUpdateByOperator(@NotNull @NotNull MatchPair pair, @NotNull @NotNull String[] affectingColumns, @Nullable @Nullable String timestampColumnName, long reverseWindowScaleUnits, long forwardWindowScaleUnits, boolean isWindowed, Class<T> colType)
      Construct a base operator for operations that produce Object outputs.
      Parameters:
      pair - the MatchPair that defines the input/output for this operation
      affectingColumns - a list of all columns (including the input column from the pair) that affects the result of this operator.
      timestampColumnName - an optional timestamp column. If this is null, it will be assumed time is measured in integer ticks.
      reverseWindowScaleUnits - the reverse window for the operator. If no timestampColumnName is provided, this is measured in ticks, otherwise it is measured in nanoseconds.
      forwardWindowScaleUnits - the forward window for the operator. If no timestampColumnName is provided, this is measured in ticks, otherwise it is measured in nanoseconds.
  • Method Details