001package org.avaje.metric.statistics;
002
003/**
004 * Statistics collected by TimedMetric.
005 */
006public interface TimedStatistics extends ValueStatistics {
007
008  /**
009   * Return true if this is bucket range based.
010   */
011  boolean isBucket();
012
013  /**
014   * Return the bucket range for these statistics.
015   */
016  String getBucketRange();
017
018}