| org.griphyn.cPlanner.namespace.aggregator.Aggregator
All known Subclasses: org.griphyn.cPlanner.namespace.aggregator.Abstract,
Aggregator | public interface Aggregator (Code) | | An internal interface, that allows us to perform aggregation functions
on profiles during merging of profiles.
author: Karan Vahi version: $Revision: 50 $ |
Field Summary | |
final public static String | VERSION The version number associated with this API of Profile Aggregators. |
Method Summary | |
public String | compute(String oldValue, String newValue, String dflt) Do the aggregation function on the profile values.
Parameters: oldValue - the existing value for the profile. Parameters: newValue - the new value being added to the profile. Parameters: dflt - the default value to be used in case the valuesare not of the correct type. |
VERSION | final public static String VERSION(Code) | | The version number associated with this API of Profile Aggregators.
|
compute | public String compute(String oldValue, String newValue, String dflt)(Code) | | Do the aggregation function on the profile values.
Parameters: oldValue - the existing value for the profile. Parameters: newValue - the new value being added to the profile. Parameters: dflt - the default value to be used in case the valuesare not of the correct type. the computed value as a String. |
|
|