Interface UpdateBySpec

All Known Implementing Classes:
CumMinMaxSpec, CumProdSpec, CumSumSpec, EmaSpec, FillBySpec

public interface UpdateBySpec
A Specification for an updateBy operation. Implementations of this are essentially tagging classes for the underlying visitor classes to walk to produce a final operation.
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Interface Description
    static interface  UpdateBySpec.Visitor  
  • Method Summary

    Modifier and Type Method Description
    String describe()
    Get a description of the operation requested.
    <V extends UpdateBySpec.Visitor>
    V
    walk​(V v)  
  • Method Details