Class CumMinMaxSpec

java.lang.Object
io.deephaven.api.updateby.spec.UpdateBySpecBase
io.deephaven.api.updateby.spec.CumMinMaxSpec
All Implemented Interfaces:
UpdateBySpec

@Immutable public abstract class CumMinMaxSpec extends UpdateBySpecBase
A UpdateBySpec for performing a Cumulative Min/Max of the specified columns.
  • Constructor Details

    • CumMinMaxSpec

      public CumMinMaxSpec()
  • Method Details

    • of

      public static CumMinMaxSpec of(boolean isMax)
    • isMax

      @Parameter public abstract boolean isMax()
    • applicableTo

      public final boolean applicableTo(Class<?> inputType)
      Description copied from interface: UpdateBySpec
      Determine if this spec can be applied to the specified type
      Parameters:
      inputType - the specified input type
      Returns:
      true if this spec can be applied to the specified input type
    • walk

      public final <T> T walk(UpdateBySpec.Visitor<T> visitor)