Class DeltaSpec

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

@Immutable public abstract class DeltaSpec extends UpdateBySpecBase
A UpdateBySpec for performing a Cumulative Sum of the specified columns.
  • Constructor Details

    • DeltaSpec

      public DeltaSpec()
  • Method Details

    • deltaControl

      public abstract Optional<DeltaControl> deltaControl()
    • of

      public static DeltaSpec of()
    • of

      public static DeltaSpec of(DeltaControl control)
    • deltaControlOrDefault

      public final DeltaControl deltaControlOrDefault()
    • 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)