blob: b2c8dc1a13cb9673a6b200ca4248e6e87e04e050 [file] [log] [blame]
Stephan Herhut2ecfe142017-06-01 14:24:01 +02001// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4package switchmaps;
5
6public enum Colors {
7 RED("rar"), BLUE("blew"), GREEN("soylent"), GRAY("fifty");
8
9 private String aField;
10
11 Colors(String string) {
12 aField = string;
13 }
14
15 @Override
16 public String toString() {
17 return aField;
18 }
19}