final case class AggregatedLongAccumulator(min: Long, max: Long, count: Long, accumulated: Long) extends Accumulator[AggregatedLongAccumulator] with Product with Serializable
Accumulates long values and computes aggregated statistics.
- min
The minimum value accumulated.
- max
The maximum value accumulated.
- count
The number of accumulated values.
- accumulated
The total accumulated value.
- Alphabetic
- By Inheritance
- AggregatedLongAccumulator
- Serializable
- Serializable
- Product
- Equals
- Accumulator
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: Long): AggregatedLongAccumulator
Adds a value to the accumulator.
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val accumulated: Long
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
lazy val
avg: Double
The average value of the accumulated values.
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val count: Long
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val max: Long
-
def
merge(other: AggregatedLongAccumulator): AggregatedLongAccumulator
Merges two accumulators of the same type.
Merges two accumulators of the same type.
- other
The other accumulator instance.
- returns
The merged accumulator.
- Definition Classes
- AggregatedLongAccumulator → Accumulator
- val min: Long
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()