Package net.jqwik.api.statistics
Interface StatisticsEntry
- 
 @API(status=MAINTAINED, since="1.4.0") public interface StatisticsEntryDescribes an entry for a given statistics selector. This is used when plugging in your own statistics report formats.- See Also:
- StatisticsReportFormat
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intcount()The number of times a certain value (set) has been collectedjava.lang.Stringname()The name of an entry usually refers to the collected value(s)doublepercentage()The percentage of times a certain value (set) has been collectedjava.util.List<java.lang.Object>values()The values collected during Statistics.collect(Object...)
 
- 
- 
- 
Method Detail- 
namejava.lang.String name() The name of an entry usually refers to the collected value(s)
 - 
countint count() The number of times a certain value (set) has been collected
 - 
percentagedouble percentage() The percentage of times a certain value (set) has been collected
 - 
valuesjava.util.List<java.lang.Object> values() The values collected during Statistics.collect(Object...)
 
- 
 
-