the type of the Map entry key
the type of the Map entry value
Construct an NumberMultiplier processor that will multiply a property value by a specified factor, returning either the old or the new value as specified.
the ValueManipulator or the property name
the Number representing the magnitude and sign of the multiplier
pass true to return the value as it was before it was multiplied, or pass false to return the value as it is after it is multiplied
Protected
Readonly
manipulatorThe property value manipulator.
Protected
multiplierThe number to multiply by.
Protected
postWhether to return the value before it was multiplied (post-factor
) or
after it is multiplied (pre-factor
).
Returns a CompositeProcessor comprised of this and the provided processor.
a CompositeProcessor comprised of this and the provided processor
the next processor
Configure the processor to return the value of the property after being incremented.
Configure the processor to return the value of the property before being multiplied.
Returns a ConditionalProcessor comprised of this processor and the provided filter.
The specified entry processor gets invoked if and only if the filter
applied to the entry evaluates to true
; otherwise the
result of the invocation will return null
.
the filter
NumberMultiplier entry processor.