Schnittstelle StatisticsEntry


@API(status=MAINTAINED, since="1.4.0") public interface StatisticsEntry
Describes an entry for a given statistics selector. This is used when plugging in your own statistics report formats.
Siehe auch:
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    int
    The number of times a certain value (set) has been collected
    The name of an entry usually refers to the collected value(s)
    double
    The percentage of times a certain value (set) has been collected
    The values collected during Statistics.collect(Object...)
  • Methodendetails

    • name

      String name()
      The name of an entry usually refers to the collected value(s)
    • count

      int count()
      The number of times a certain value (set) has been collected
    • percentage

      double percentage()
      The percentage of times a certain value (set) has been collected
    • values

      List<Object> values()
      The values collected during Statistics.collect(Object...)