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 * Indicates that there is no change.
15 */
16 NONE,
17 /**
18 * Indicates that there is a low rate of change.
19 */
20 LOW_CHANGE,
21 /**
22 * Indicates that there is a high rate of change.
23 */
24 HIGH_CHANGE
25 }