Class PointSummaryStatistics
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.util.PointSummaryStatistics
-
- All Implemented Interfaces:
PointConsumer
public class PointSummaryStatistics extends Object implements PointConsumer
-
-
Constructor Summary
Constructors Constructor Description PointSummaryStatistics()
PointSummaryStatistics(int count, int min, int max, int sum)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Point p)
void
combine(PointSummaryStatistics other)
Point
getAverage()
long
getCount()
Point
getMax()
Point
getMin()
Point
getSum()
String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.jungrapht.visualization.layout.algorithms.util.PointConsumer
andThen
-
-
-
-
Constructor Detail
-
PointSummaryStatistics
public PointSummaryStatistics()
-
PointSummaryStatistics
public PointSummaryStatistics(int count, int min, int max, int sum) throws IllegalArgumentException
- Throws:
IllegalArgumentException
-
-
Method Detail
-
accept
public void accept(Point p)
- Specified by:
accept
in interfacePointConsumer
-
combine
public void combine(PointSummaryStatistics other)
-
getCount
public final long getCount()
-
getSum
public final Point getSum()
-
getMin
public final Point getMin()
-
getMax
public final Point getMax()
-
getAverage
public final Point getAverage()
-
-