Package org.jpmml.evaluator
Interface LaggableMap<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vget(Object key)Gets the field value at the current position.VgetLagged(K key, int n, List<K> blockIndicatorKeys)Gets the field value after applying a "lag transformation" to the current position.-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
getLagged
V getLagged(K key, int n, List<K> blockIndicatorKeys)
Gets the field value after applying a "lag transformation" to the current position.
- Parameters:
key- The field name.n- The number of steps to move backwards from the current position. The previous position is1step backwards.blockIndicatorKeys- Block indicator field names.- Returns:
- The field value or
null.
-
-