1   package com.atlassian.webtest.ui.keys;
2   
3   /**
4    * Modifier keys are keys that, when pressed, modify the normal actions of another keys. Those can be
5    * added to any entered {@link KeySequence} in the framework.
6    *
7    * @since 4.3
8    */
9   public enum ModifierKey
10  {
11      SHIFT,
12      ALT,
13      CONTROL,
14      META
15  }