View Javadoc

1   package com.atlassian.vcache;
2   
3   import com.atlassian.annotations.PublicApi;
4   
5   /**
6    * Provides a scale for the rate of change of a measure. For example, the rate of change in the number of entries
7    * in a cache.
8    *
9    * @since 1.0
10   */
11  @PublicApi
12  public enum ChangeRate
13  {
14      /**
15       * Indicates that there is no change.
16       */
17      NONE,
18      /**
19       * Indicates that there is a low rate of change.
20       */
21      LOW_CHANGE,
22      /**
23       * Indicates that there is a high rate of change.
24       */
25      HIGH_CHANGE
26  }