Package

com.salesforce.op

aggregators

Permalink

package aggregators

Visibility
  1. Public
  2. All

Type Members

  1. trait AggregatorDefaults[T <: FeatureType] extends AnyRef

    Permalink

    Reasonable defaults values for most aggregators

    Reasonable defaults values for most aggregators

    T

    type of Feature computed from aggregator

  2. trait CommutativeGroupAggregator[-A, B, +C] extends MonoidAggregator[A, B, C]

    Permalink

    Aggregator based on a commutative group

  3. abstract class ConcatList[V, T <: OPList[V]] extends MonoidAggregator[Event[T], Seq[V], T] with AggregatorDefaults[T]

    Permalink

    Aggregator that gives concatenation of the lists

  4. abstract class ConcatTextWithSeparator[T <: Text] extends MonoidAggregator[Event[T], Option[String], T] with AggregatorDefaults[T]

    Permalink

    Aggregator that gives separated concatenation of text values with a separator

  5. abstract class CustomMonoidAggregator[O <: FeatureType] extends MonoidAggregator[Event[O], aggregators.CustomMonoidAggregator.O.Value, O] with AggregatorDefaults[O]

    Permalink

    Custom Monoid Aggregator allowing passing a zero value and an associative function to combine values

    Custom Monoid Aggregator allowing passing a zero value and an associative function to combine values

    O

    type of feature

  6. case class CutOffTime(cType: CutOffTimeType, timeMs: Option[Long]) extends Product with Serializable

    Permalink

    A cut off time to be used for aggregating features extracted from the events

    A cut off time to be used for aggregating features extracted from the events

    cType

    cut off type

    timeMs

    cut off time value in millis

  7. sealed trait CutOffTimeType extends EnumEntry with Serializable

    Permalink
  8. case class Event[T <: FeatureType](date: Long, value: T, isResponse: Boolean)(implicit evidence$1: scala.reflect.api.JavaUniverse.WeakTypeTag[T]) extends Ordered[Event[T]] with Serializable with Product

    Permalink

    Used by feature aggregators to do time based filtering

    Used by feature aggregators to do time based filtering

    T

    type of feature

    date

    date associated with feature

    value

    value associated with feature

  9. trait ExtendedMultiset extends MapMonoid[String, Long] with Group[Map[String, Long]]

    Permalink

    Multiset with possible negative counters (so what)

    Multiset with possible negative counters (so what)

    Multiset - is a generalization of the concept of a set that, unlike a set, allows multiple instances of the multiset's elements. For example, {a, a, b} and {a, b} are different multisets although they are the same set. However, order does not matter, so {a, a, b} and {a, b, a} are the same multiset.

  10. trait FeatureAggregator[I, E <: FeatureType, A, O <: FeatureType] extends Serializable

    Permalink

    Holds information for extracting features from data record

    Holds information for extracting features from data record

    I

    the type of the raw data from which the feature will be extracted

    E

    the type of the data extracted into the event to be aggregated

    A

    the type of the data that has been prepared for monoid aggregation

    O

    the final type of the feature returned

  11. abstract class FirstAggregator[T <: FeatureType] extends TimeBasedAggregator[T]

    Permalink

    Gives the first value of feature

    Gives the first value of feature

    T

    type of feature

  12. case class GenericFeatureAggregator[I, E <: FeatureType, A, O <: FeatureType](extractFn: (I) ⇒ E, aggregator: MonoidAggregator[Event[E], A, O], isResponse: Boolean, specialTimeWindow: Option[Duration])(implicit evidence$1: scala.reflect.api.JavaUniverse.WeakTypeTag[E], evidence$2: scala.reflect.api.JavaUniverse.WeakTypeTag[O]) extends FeatureAggregator[I, E, A, O] with Product with Serializable

    Permalink

    Generic Feature Aggregator

    Generic Feature Aggregator

    I

    the type of the raw data from which the feature will be extracted

    E

    the type of the data extracted into the event to be aggregated

    A

    the type of the data that has been prepared for monoid aggregation

    O

    the final type of the feature returned

    extractFn

    function defining how to extract feature from the raw data type

    aggregator

    monoid defining how feature should be aggregated

    isResponse

    boolean describing whether feature is a response or predictor for aggregation purposes

    specialTimeWindow

    time window for integration specific to this feature (will override time windows defined by reader)

  13. trait GeolocationFunctions extends AnyRef

    Permalink
  14. abstract class LastAggregator[T <: FeatureType] extends TimeBasedAggregator[T]

    Permalink

    Gives last (most recent) value of feature

    Gives last (most recent) value of feature

    T

    type of feature

  15. abstract class LogicalOp extends MonoidAggregator[Event[Binary], Option[Boolean], Binary] with AggregatorDefaults[Binary]

    Permalink

    Aggregator that gives the logical operation of the binary values

  16. abstract class MeanDouble[T <: OPNumeric[Double]] extends MonoidAggregator[Event[T], Option[(Double, Int)], T]

    Permalink

    Aggregator that gives the mean of the real values

  17. abstract class MinMaxList[N, T <: OPList[N]] extends MonoidAggregator[Event[T], Seq[N], T]

    Permalink

    Aggregator that gives min/max item over a collection of lists

  18. abstract class MinMaxNumeric[N, T <: OPNumeric[N]] extends MonoidAggregator[Event[T], Option[N], T] with AggregatorDefaults[T]

    Permalink

    Aggregator that gives the min or max of the numeric values

  19. abstract class SetAggregator[A <: MultiPickList] extends MonoidAggregator[Event[A], Set[String], A] with AggregatorDefaults[A]

    Permalink

    Aggregator that gives the union of Set values

  20. abstract class SumNumeric[N, T <: OPNumeric[N]] extends MonoidAggregator[Event[T], Option[N], T] with AggregatorDefaults[T]

    Permalink

    Aggregator that gives the sum of the numeric values

  21. abstract class UnionConcatTextMap[T <: OPMap[String]] extends MonoidAggregator[Event[T], Map[String, String], T] with AggregatorDefaults[T]

    Permalink

    Aggregator that gives the union of text map data, concatenating the values with a separator on matching keys

  22. abstract class UnionMeanDoubleMap[T <: OPMap[Double]] extends MonoidAggregator[Event[T], Map[String, (Double, Int)], T]

    Permalink

    Natural map monoid lifting averaging operator

  23. abstract class UnionMinMaxNumericMap[N, T <: OPMap[N]] extends MonoidAggregator[Event[T], Map[String, N], T] with AggregatorDefaults[T]

    Permalink

    Natural map monoid for Map[String, T <: OPNumeric[N]] where N is totally ordered, by lifting max(_, _) monoid operation to a monoid operator on map.

  24. abstract class UnionSetMap[T <: OPMap[Set[String]]] extends MonoidAggregator[Event[T], Map[String, Set[String]], T] with AggregatorDefaults[T]

    Permalink

    Aggregator that gives the union of set map data

  25. abstract class UnionSumNumericMap[N, T <: OPMap[N]] extends MonoidAggregator[Event[T], Map[String, N], T] with AggregatorDefaults[T]

    Permalink

    Aggregator that gives the union of numeric data

Value Members

  1. object CombineVector extends MonoidAggregator[Event[OPVector], Vector, OPVector] with AggregatorDefaults[OPVector] with Product with Serializable

    Permalink

    Aggregator that gives the union of Vector data

  2. object ConcatBase64 extends ConcatTextWithSeparator[Base64] with Product with Serializable

    Permalink
  3. object ConcatCity extends ConcatTextWithSeparator[City] with Product with Serializable

    Permalink
  4. object ConcatComboBox extends ConcatTextWithSeparator[ComboBox] with Product with Serializable

    Permalink
  5. object ConcatCountry extends ConcatTextWithSeparator[Country] with Product with Serializable

    Permalink
  6. object ConcatDateList extends ConcatList[Long, DateList] with Product with Serializable

    Permalink
  7. object ConcatDateTimeList extends ConcatList[Long, DateTimeList] with Product with Serializable

    Permalink
  8. object ConcatEmail extends ConcatTextWithSeparator[Email] with Product with Serializable

    Permalink
  9. object ConcatID extends ConcatTextWithSeparator[ID] with Product with Serializable

    Permalink
  10. object ConcatPhone extends ConcatTextWithSeparator[Phone] with Product with Serializable

    Permalink
  11. object ConcatPostalCode extends ConcatTextWithSeparator[PostalCode] with Product with Serializable

    Permalink
  12. object ConcatState extends ConcatTextWithSeparator[State] with Product with Serializable

    Permalink
  13. object ConcatStreet extends ConcatTextWithSeparator[Street] with Product with Serializable

    Permalink
  14. object ConcatText extends ConcatTextWithSeparator[Text] with Product with Serializable

    Permalink
  15. object ConcatTextArea extends ConcatTextWithSeparator[TextArea] with Product with Serializable

    Permalink
  16. object ConcatTextList extends ConcatList[String, TextList] with Product with Serializable

    Permalink
  17. object ConcatURL extends ConcatTextWithSeparator[URL] with Product with Serializable

    Permalink
  18. object CutOffTime extends Serializable

    Permalink
  19. object CutOffTimeTypes extends Enum[CutOffTimeType]

    Permalink
  20. object Event extends Serializable

    Permalink
  21. object ExtendedMultiset extends MapMonoid[String, Long] with ExtendedMultiset

    Permalink
  22. object FirstBase64 extends FirstAggregator[Base64] with Product with Serializable

    Permalink
  23. object FirstBase64Map extends FirstAggregator[Base64Map] with Product with Serializable

    Permalink
  24. object FirstBinary extends FirstAggregator[Binary] with Product with Serializable

    Permalink
  25. object FirstBinaryMap extends FirstAggregator[BinaryMap] with Product with Serializable

    Permalink
  26. object FirstCity extends FirstAggregator[City] with Product with Serializable

    Permalink
  27. object FirstCityMap extends FirstAggregator[CityMap] with Product with Serializable

    Permalink
  28. object FirstComboBox extends FirstAggregator[ComboBox] with Product with Serializable

    Permalink
  29. object FirstComboBoxMap extends FirstAggregator[ComboBoxMap] with Product with Serializable

    Permalink
  30. object FirstCountry extends FirstAggregator[Country] with Product with Serializable

    Permalink
  31. object FirstCountryMap extends FirstAggregator[CountryMap] with Product with Serializable

    Permalink
  32. object FirstCurrency extends FirstAggregator[Currency] with Product with Serializable

    Permalink
  33. object FirstCurrencyMap extends FirstAggregator[CurrencyMap] with Product with Serializable

    Permalink
  34. object FirstDate extends FirstAggregator[Date] with Product with Serializable

    Permalink
  35. object FirstDateList extends FirstAggregator[DateList] with Product with Serializable

    Permalink
  36. object FirstDateMap extends FirstAggregator[DateMap] with Product with Serializable

    Permalink
  37. object FirstDateTime extends FirstAggregator[DateTime] with Product with Serializable

    Permalink
  38. object FirstDateTimeList extends FirstAggregator[DateTimeList] with Product with Serializable

    Permalink
  39. object FirstDateTimeMap extends FirstAggregator[DateTimeMap] with Product with Serializable

    Permalink
  40. object FirstEmail extends FirstAggregator[Email] with Product with Serializable

    Permalink
  41. object FirstEmailMap extends FirstAggregator[EmailMap] with Product with Serializable

    Permalink
  42. object FirstGeolocation extends FirstAggregator[Geolocation] with Product with Serializable

    Permalink
  43. object FirstGeolocationMap extends FirstAggregator[GeolocationMap] with Product with Serializable

    Permalink
  44. object FirstID extends FirstAggregator[ID] with Product with Serializable

    Permalink
  45. object FirstIDMap extends FirstAggregator[IDMap] with Product with Serializable

    Permalink
  46. object FirstIntegral extends FirstAggregator[Integral] with Product with Serializable

    Permalink
  47. object FirstIntegralMap extends FirstAggregator[IntegralMap] with Product with Serializable

    Permalink
  48. object FirstMultiPickList extends FirstAggregator[MultiPickList] with Product with Serializable

    Permalink
  49. object FirstMultiPickListMap extends FirstAggregator[MultiPickListMap] with Product with Serializable

    Permalink
  50. object FirstNameStats extends FirstAggregator[NameStats] with Product with Serializable

    Permalink
  51. object FirstPercent extends FirstAggregator[Percent] with Product with Serializable

    Permalink
  52. object FirstPercentMap extends FirstAggregator[PercentMap] with Product with Serializable

    Permalink
  53. object FirstPhone extends FirstAggregator[Phone] with Product with Serializable

    Permalink
  54. object FirstPhoneMap extends FirstAggregator[PhoneMap] with Product with Serializable

    Permalink
  55. object FirstPickList extends FirstAggregator[Phone] with Product with Serializable

    Permalink
  56. object FirstPickListMap extends FirstAggregator[PickListMap] with Product with Serializable

    Permalink
  57. object FirstPostalCode extends FirstAggregator[PostalCode] with Product with Serializable

    Permalink
  58. object FirstPostalCodeMap extends FirstAggregator[PostalCodeMap] with Product with Serializable

    Permalink
  59. object FirstReal extends FirstAggregator[Real] with Product with Serializable

    Permalink
  60. object FirstRealMap extends FirstAggregator[RealMap] with Product with Serializable

    Permalink
  61. object FirstState extends FirstAggregator[State] with Product with Serializable

    Permalink
  62. object FirstStateMap extends FirstAggregator[StateMap] with Product with Serializable

    Permalink
  63. object FirstStreet extends FirstAggregator[Street] with Product with Serializable

    Permalink
  64. object FirstStreetMap extends FirstAggregator[StreetMap] with Product with Serializable

    Permalink
  65. object FirstText extends FirstAggregator[Text] with Product with Serializable

    Permalink
  66. object FirstTextArea extends FirstAggregator[TextArea] with Product with Serializable

    Permalink
  67. object FirstTextAreaMap extends FirstAggregator[TextAreaMap] with Product with Serializable

    Permalink
  68. object FirstTextList extends FirstAggregator[TextList] with Product with Serializable

    Permalink
  69. object FirstTextMap extends FirstAggregator[TextMap] with Product with Serializable

    Permalink
  70. object FirstURL extends FirstAggregator[URL] with Product with Serializable

    Permalink
  71. object FirstURLMap extends FirstAggregator[URLMap] with Product with Serializable

    Permalink
  72. object FirstVector extends FirstAggregator[OPVector] with Product with Serializable

    Permalink
  73. object GeolocationMidpoint extends MonoidAggregator[Event[Geolocation], Array[Double], Geolocation] with GeolocationFunctions with Product with Serializable

    Permalink

    Geolocation doesn't support concatenation since each list really represents just one object, instead its default will be the geographic midpoint (found by averaging corresponding x,y,z coordinates and then projecting that point onto the surface of the Earth)

  74. object LastBase64 extends LastAggregator[Base64] with Product with Serializable

    Permalink
  75. object LastBase64Map extends LastAggregator[Base64Map] with Product with Serializable

    Permalink
  76. object LastBinary extends LastAggregator[Binary] with Product with Serializable

    Permalink
  77. object LastBinaryMap extends LastAggregator[BinaryMap] with Product with Serializable

    Permalink
  78. object LastCity extends LastAggregator[City] with Product with Serializable

    Permalink
  79. object LastCityMap extends LastAggregator[CityMap] with Product with Serializable

    Permalink
  80. object LastComboBox extends LastAggregator[ComboBox] with Product with Serializable

    Permalink
  81. object LastComboBoxMap extends LastAggregator[ComboBoxMap] with Product with Serializable

    Permalink
  82. object LastCountry extends LastAggregator[Country] with Product with Serializable

    Permalink
  83. object LastCountryMap extends LastAggregator[CountryMap] with Product with Serializable

    Permalink
  84. object LastCurrency extends LastAggregator[Currency] with Product with Serializable

    Permalink
  85. object LastCurrencyMap extends LastAggregator[CurrencyMap] with Product with Serializable

    Permalink
  86. object LastDate extends LastAggregator[Date] with Product with Serializable

    Permalink
  87. object LastDateList extends LastAggregator[DateList] with Product with Serializable

    Permalink
  88. object LastDateMap extends LastAggregator[DateMap] with Product with Serializable

    Permalink
  89. object LastDateTime extends LastAggregator[DateTime] with Product with Serializable

    Permalink
  90. object LastDateTimeList extends LastAggregator[DateTimeList] with Product with Serializable

    Permalink
  91. object LastDateTimeMap extends LastAggregator[DateTimeMap] with Product with Serializable

    Permalink
  92. object LastEmail extends LastAggregator[Email] with Product with Serializable

    Permalink
  93. object LastEmailMap extends LastAggregator[EmailMap] with Product with Serializable

    Permalink
  94. object LastGeolocation extends LastAggregator[Geolocation] with Product with Serializable

    Permalink
  95. object LastGeolocationMap extends LastAggregator[GeolocationMap] with Product with Serializable

    Permalink
  96. object LastID extends LastAggregator[ID] with Product with Serializable

    Permalink
  97. object LastIDMap extends LastAggregator[IDMap] with Product with Serializable

    Permalink
  98. object LastIntegral extends LastAggregator[Integral] with Product with Serializable

    Permalink
  99. object LastIntegralMap extends LastAggregator[IntegralMap] with Product with Serializable

    Permalink
  100. object LastMultiPickList extends LastAggregator[MultiPickList] with Product with Serializable

    Permalink
  101. object LastMultiPickListMap extends LastAggregator[MultiPickListMap] with Product with Serializable

    Permalink
  102. object LastNameStats extends LastAggregator[NameStats] with Product with Serializable

    Permalink
  103. object LastPercent extends LastAggregator[Percent] with Product with Serializable

    Permalink
  104. object LastPercentMap extends LastAggregator[PercentMap] with Product with Serializable

    Permalink
  105. object LastPhone extends LastAggregator[Phone] with Product with Serializable

    Permalink
  106. object LastPhoneMap extends LastAggregator[PhoneMap] with Product with Serializable

    Permalink
  107. object LastPickList extends LastAggregator[PickList] with Product with Serializable

    Permalink
  108. object LastPickListMap extends LastAggregator[PickListMap] with Product with Serializable

    Permalink
  109. object LastPostalCode extends LastAggregator[PostalCode] with Product with Serializable

    Permalink
  110. object LastPostalCodeMap extends LastAggregator[PostalCodeMap] with Product with Serializable

    Permalink
  111. object LastReal extends LastAggregator[Real] with Product with Serializable

    Permalink
  112. object LastRealMap extends LastAggregator[RealMap] with Product with Serializable

    Permalink
  113. object LastState extends LastAggregator[State] with Product with Serializable

    Permalink
  114. object LastStateMap extends LastAggregator[StateMap] with Product with Serializable

    Permalink
  115. object LastStreet extends LastAggregator[Street] with Product with Serializable

    Permalink
  116. object LastStreetMap extends LastAggregator[StreetMap] with Product with Serializable

    Permalink
  117. object LastText extends LastAggregator[Text] with Product with Serializable

    Permalink
  118. object LastTextArea extends LastAggregator[TextArea] with Product with Serializable

    Permalink
  119. object LastTextAreaMap extends LastAggregator[TextAreaMap] with Product with Serializable

    Permalink
  120. object LastTextList extends LastAggregator[TextList] with Product with Serializable

    Permalink
  121. object LastTextMap extends LastAggregator[TextMap] with Product with Serializable

    Permalink
  122. object LastURL extends LastAggregator[URL] with Product with Serializable

    Permalink
  123. object LastURLMap extends LastAggregator[URLMap] with Product with Serializable

    Permalink
  124. object LastVector extends LastAggregator[OPVector] with Product with Serializable

    Permalink
  125. object LogicalAnd extends LogicalOp with LogicalAndMonoid with Product with Serializable

    Permalink
  126. object LogicalOr extends LogicalOp with LogicalOrMonoid with Product with Serializable

    Permalink
  127. object LogicalXor extends LogicalOp with LogicalXorMonoid with Product with Serializable

    Permalink
  128. object MaxCurrency extends MinMaxNumeric[Double, Currency] with Product with Serializable

    Permalink
  129. object MaxDate extends MinMaxNumeric[Long, Date] with Product with Serializable

    Permalink
  130. object MaxDateList extends MinMaxList[Long, DateList] with Product with Serializable

    Permalink
  131. object MaxDateTime extends MinMaxNumeric[Long, DateTime] with Product with Serializable

    Permalink
  132. object MaxDateTimeList extends MinMaxList[Long, DateTimeList] with Product with Serializable

    Permalink
  133. object MaxIntegral extends MinMaxNumeric[Long, Integral] with Product with Serializable

    Permalink
  134. object MaxReal extends MinMaxNumeric[Double, Real] with Product with Serializable

    Permalink
  135. object MaxRealNN extends MinMaxNumeric[Double, RealNN] with Product with Serializable

    Permalink
  136. object MeanCurrency extends MeanDouble[Currency] with Product with Serializable

    Permalink
  137. object MeanPercent extends MeanDouble[Percent] with PercentPrepare with Product with Serializable

    Permalink
  138. object MeanReal extends MeanDouble[Real] with Product with Serializable

    Permalink
  139. object MeanRealNN extends MeanDouble[RealNN] with Product with Serializable

    Permalink
  140. object MinCurrency extends MinMaxNumeric[Double, Currency] with Product with Serializable

    Permalink
  141. object MinDate extends MinMaxNumeric[Long, Date] with Product with Serializable

    Permalink
  142. object MinDateList extends MinMaxList[Long, DateList] with Product with Serializable

    Permalink
  143. object MinDateTime extends MinMaxNumeric[Long, DateTime] with Product with Serializable

    Permalink
  144. object MinDateTimeList extends MinMaxList[Long, DateTimeList] with Product with Serializable

    Permalink
  145. object MinIntegral extends MinMaxNumeric[Long, Integral] with Product with Serializable

    Permalink
  146. object MinReal extends MinMaxNumeric[Double, Real] with Product with Serializable

    Permalink
  147. object MinRealNN extends MinMaxNumeric[Double, RealNN] with Product with Serializable

    Permalink
  148. object ModePickList extends MonoidAggregator[Event[PickList], Map[String, Int], PickList] with Product with Serializable

    Permalink

    Aggregator for PickLists that gives the most common non-Empty value seen during the aggregation

  149. object MonoidAggregatorDefaults

    Permalink

    Default monoid aggregators for each feature type

  150. object SumCurrency extends SumNumeric[Double, Currency] with Product with Serializable

    Permalink
  151. object SumIntegral extends SumNumeric[Long, Integral] with Product with Serializable

    Permalink
  152. object SumReal extends SumNumeric[Double, Real] with Product with Serializable

    Permalink
  153. object SumRealNN extends SumNumeric[Double, RealNN] with Product with Serializable

    Permalink
  154. object SumVector extends MonoidAggregator[Event[OPVector], Vector, OPVector] with AggregatorDefaults[OPVector] with Product with Serializable

    Permalink

    Aggregator that gives the sum of Vector data

  155. object UnionBinaryMap extends MonoidAggregator[Event[BinaryMap], Map[String, Boolean], BinaryMap] with AggregatorDefaults[BinaryMap] with Product with Serializable

    Permalink

    Aggregator that gives the union of binary map data

  156. object UnionConcatBase64Map extends UnionConcatTextMap[Base64Map] with Product with Serializable

    Permalink
  157. object UnionConcatCityMap extends UnionConcatTextMap[CityMap] with Product with Serializable

    Permalink
  158. object UnionConcatComboBoxMap extends UnionConcatTextMap[ComboBoxMap] with Product with Serializable

    Permalink
  159. object UnionConcatCountryMap extends UnionConcatTextMap[CountryMap] with Product with Serializable

    Permalink
  160. object UnionConcatEmailMap extends UnionConcatTextMap[EmailMap] with Product with Serializable

    Permalink
  161. object UnionConcatIDMap extends UnionConcatTextMap[IDMap] with Product with Serializable

    Permalink
  162. object UnionConcatNameStats extends UnionConcatTextMap[NameStats] with Product with Serializable

    Permalink
  163. object UnionConcatPhoneMap extends UnionConcatTextMap[PhoneMap] with Product with Serializable

    Permalink
  164. object UnionConcatPickListMap extends UnionConcatTextMap[PickListMap] with Product with Serializable

    Permalink
  165. object UnionConcatPostalCodeMap extends UnionConcatTextMap[PostalCodeMap] with Product with Serializable

    Permalink
  166. object UnionConcatStateMap extends UnionConcatTextMap[StateMap] with Product with Serializable

    Permalink
  167. object UnionConcatStreetMap extends UnionConcatTextMap[StreetMap] with Product with Serializable

    Permalink
  168. object UnionConcatTextAreaMap extends UnionConcatTextMap[TextAreaMap] with Product with Serializable

    Permalink
  169. object UnionConcatTextMap extends UnionConcatTextMap[TextMap] with Product with Serializable

    Permalink
  170. object UnionConcatURLMap extends UnionConcatTextMap[URLMap] with Product with Serializable

    Permalink
  171. object UnionCurrencyMap extends UnionSumNumericMap[Double, CurrencyMap] with Product with Serializable

    Permalink
  172. object UnionGeolocationMidpointMap extends MonoidAggregator[Event[GeolocationMap], Map[String, Array[Double]], GeolocationMap] with GeolocationFunctions with Product with Serializable

    Permalink
  173. object UnionIntegralMap extends UnionSumNumericMap[Long, IntegralMap] with Product with Serializable

    Permalink
  174. object UnionMaxCurrencyMap extends UnionMinMaxNumericMap[Double, CurrencyMap] with Product with Serializable

    Permalink
  175. object UnionMaxDateMap extends UnionMinMaxNumericMap[Long, DateMap] with Product with Serializable

    Permalink
  176. object UnionMaxDateTimeMap extends UnionMinMaxNumericMap[Long, DateTimeMap] with Product with Serializable

    Permalink
  177. object UnionMaxIntegralMap extends UnionMinMaxNumericMap[Long, IntegralMap] with Product with Serializable

    Permalink
  178. object UnionMaxRealMap extends UnionMinMaxNumericMap[Double, RealMap] with Product with Serializable

    Permalink
  179. object UnionMeanCurrencyMap extends UnionMeanDoubleMap[CurrencyMap] with Product with Serializable

    Permalink
  180. object UnionMeanPercentMap extends UnionMeanDoubleMap[PercentMap] with PercentPrepare with Product with Serializable

    Permalink
  181. object UnionMeanPredicition extends UnionMeanDoubleMap[Prediction] with Product with Serializable

    Permalink
  182. object UnionMeanRealMap extends UnionMeanDoubleMap[RealMap] with Product with Serializable

    Permalink
  183. object UnionMinCurrencyMap extends UnionMinMaxNumericMap[Double, CurrencyMap] with Product with Serializable

    Permalink
  184. object UnionMinDateMap extends UnionMinMaxNumericMap[Long, DateMap] with Product with Serializable

    Permalink
  185. object UnionMinDateTimeMap extends UnionMinMaxNumericMap[Long, DateTimeMap] with Product with Serializable

    Permalink
  186. object UnionMinIntegralMap extends UnionMinMaxNumericMap[Long, IntegralMap] with Product with Serializable

    Permalink
  187. object UnionMinRealMap extends UnionMinMaxNumericMap[Double, RealMap] with Product with Serializable

    Permalink
  188. object UnionMultiPickList extends SetAggregator[MultiPickList] with Product with Serializable

    Permalink
  189. object UnionMultiPickListMap extends UnionSetMap[MultiPickListMap] with Product with Serializable

    Permalink
  190. object UnionRealMap extends UnionSumNumericMap[Double, RealMap] with Product with Serializable

    Permalink

Ungrouped