Interface OpMapValueFactory<K,V>

Type Parameters:
K -
V -

public interface OpMapValueFactory<K,V>
Created by vpc on 3/12/17.
  • Method Summary

    Modifier and Type
    Method
    Description
    add(V oldValue, V newValue)
     
    create(K key)
     
    divide(V oldValue, V newValue)
     
    multiply(V oldValue, V newValue)
     
    neg(V oldValue)
     
    substract(V oldValue, V newValue)
     
  • Method Details

    • create

      V create(K key)
    • neg

      V neg(V oldValue)
    • add

      V add(V oldValue, V newValue)
    • substract

      V substract(V oldValue, V newValue)
    • multiply

      V multiply(V oldValue, V newValue)
    • divide

      V divide(V oldValue, V newValue)