1 package nl.tudelft.goal.ut2004.messages;
2
3 /**
4 * Scope for chatting.
5 * @author Michiel Hegemans
6 */
7 public enum Scope {
8
9 GLOBAL, TEAM;
10
11 public static Scope valueOfIgnoreCase(String scope) {
12 return valueOf(scope.toUpperCase());
13 }
14
15 }