View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.tournament.utils;
2   
3   /**
4    * The key is returned via {@link UT2004TournamentProperty#toString()} method.
5    * 
6    * @author Jimmy
7    */
8   public enum UT2004TournamentProperty {
9   	
10  
11  	/**
12  	 * Directory containing compiled Pogamut classes for UT2004. It is a root directory containing various directories with revisions
13  	 * of certain Pogamut projects (Core/Unreal/UT2004/SPOSHs/ACTrs).
14  	 */
15  	UT2004_DIR("pogamut.ut2004.tournament.ut2004.dir");
16  
17  	private String key;
18  
19  	private UT2004TournamentProperty(String key) {
20  		this.key = key;
21  	}
22  
23  	public String getKey() {
24  		return key;
25  	}
26  	
27  	public String toString() {
28  		return key;
29  	}
30  	
31  }