| org.cougaar.planning.ldm.measure.UnaryOperator
Inner Class :class Subtract extends Add | |
Inner Class :class AboveZero extends Max | |
Inner Class :class BelowZero extends Min | |
Inner Class :class Integrate extends Area | |
Field Summary | |
AboveZero | ABOVE_ZERO | Area | AREA An "identity" operator where the caller is required to pass
in the integrated volume between points. | BelowZero | BELOW_ZERO | Identity | IDENTITY Returns the given measure instance. | Negate | NEGATE |
Method Summary | |
M | apply(M m) Apply this operator to the specified measure.
Parameters: m - the measure, or null for zero the operator result, where null indicates zero. |
ABOVE_ZERO | AboveZero ABOVE_ZERO(Code) | | See Also: Max See Also: same as max(null) |
AREA | Area AREA(Code) | | An "identity" operator where the caller is required to pass
in the integrated volume between points.
E.g., if the prior measure was "time=10 value=5" and the
current measure is "time=20 value=0" then the caller should
apply a value of 25.
See Also: Identity |
BELOW_ZERO | BelowZero BELOW_ZERO(Code) | | See Also: Min See Also: same as min(null) |
IDENTITY | Identity IDENTITY(Code) | | Returns the given measure instance.
See Also: Area |
apply | M apply(M m)(Code) | | Apply this operator to the specified measure.
Parameters: m - the measure, or null for zero the operator result, where null indicates zero. Ifthe input measure is non-null then this method will notreturn null. |
|
|