View Javadoc

1   package cz.cuni.amis.pogamut.udk.utils;
2   
3   public enum PogamutUDKProperty {
4   	/**
5   	 * Where the bot should connect to (hostname of the server running
6   	 * GameBotsUDK)
7   	 */
8   	POGAMUT_UDK_BOT_HOST("pogamut.udk.bot.host"),
9   
10  	/**
11  	 * Where the bot should connect to (bot port of the GameBotsUDK).
12  	 */
13  	POGAMUT_UDK_BOT_PORT("pogamut.udk.bot.port"),
14  
15  	/**
16  	 * Where the server should connect to (hostname of the server running
17  	 * GameBotsUDK)
18  	 */
19  	POGAMUT_UDK_SERVER_HOST("pogamut.udk.server.host"),
20  
21  	/**
22  	 * Where the server should connect to (server port of the GameBotsUDK)
23  	 */
24  	POGAMUT_UDK_SERVER_PORT("pogamut.udk.server.port"),
25  
26  	/**
27  	 * Where the observer should connect to (hostname of the server running
28  	 * GameBotsUDK)
29  	 */
30  	POGAMUT_UDK_OBSERVER_HOST("pogamut.udk.observer.host"),
31  
32  	/**
33  	 * Where the observer should connect to (observer port of the GameBotsUDK)
34  	 */
35  	POGAMUT_UDK_OBSERVER_PORT("pogamut.udk.observer.port"),
36  
37  	/** Path to the Unreal home dir. */
38  	POGAMUT_UNREAL_HOME("pogamut.udk.home"),
39  
40  	/** Should tests use external UCC instance or they will run internal one? */
41  	POGAMUT_UNREAL_TEST_EXT_SERVER("pogamut.test.useExternalUCC");
42  
43  	private String key;
44  
45  	private PogamutUDKProperty(String key) {
46  		this.key = key;
47  	}
48  
49  	public String getKey() {
50  		return key;
51  	}
52  
53  	public String toString() {
54  		return key;
55  	}
56  }