Uses of Interface
org.gephi.statistics.spi.Statistics
-
Packages that use Statistics Package Description org.gephi.statistics.api API for statistics and metrics tasks execution.org.gephi.statistics.spi Interfaces for creating new statistics and metrics algorihms. -
-
Uses of Statistics in org.gephi.statistics.api
Methods in org.gephi.statistics.api with parameters of type Statistics Modifier and Type Method Description void
StatisticsController. execute(Statistics statistics)
Executesstatistics
in the current thread.void
StatisticsController. execute(Statistics statistics, LongTaskListener listener)
Execute the statistics algorithm in a background thread and notifylistener
when finished.Method parameters in org.gephi.statistics.api with type arguments of type Statistics Modifier and Type Method Description StatisticsBuilder
StatisticsController. getBuilder(Class<? extends Statistics> statistics)
Finds the builder from the statistics class.String
StatisticsModel. getReport(Class<? extends Statistics> statistics)
Returns the report for the given statistics class ornull
if no report exists for this statistics. -
Uses of Statistics in org.gephi.statistics.spi
Subinterfaces of Statistics in org.gephi.statistics.spi Modifier and Type Interface Description interface
DynamicStatistics
Define a dynamic statistics implementation.Methods in org.gephi.statistics.spi that return Statistics Modifier and Type Method Description Statistics
StatisticsBuilder. getStatistics()
Build a new statistics instance and return itMethods in org.gephi.statistics.spi that return types with arguments of type Statistics Modifier and Type Method Description Class<? extends Statistics>
StatisticsBuilder. getStatisticsClass()
Returns the statistics' class this UI belongs to.Class<? extends Statistics>
StatisticsUI. getStatisticsClass()
Returns the statistics' class this UI belongs to.Methods in org.gephi.statistics.spi with parameters of type Statistics Modifier and Type Method Description void
StatisticsUI. setup(Statistics statistics)
Push a statistics instance to the UI to load its settings.
-