View Javadoc
1   package integrationTests;
2   
3   /**
4    * The Enum AnEnum.
5    */
6   public enum AnEnum {
7   
8       /** The One value. */
9       OneValue,
10  
11      /** The Another value. */
12      AnotherValue
13  }