cz.cuni.amis.pogamut.ut2004.utils
Enum PogamutUT2004Property

java.lang.Object
  extended by java.lang.Enum<PogamutUT2004Property>
      extended by cz.cuni.amis.pogamut.ut2004.utils.PogamutUT2004Property
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PogamutUT2004Property>

public enum PogamutUT2004Property
extends java.lang.Enum<PogamutUT2004Property>


Enum Constant Summary
POGAMUT_UNREAL_HOME
          Path to the Unreal home dir.
POGAMUT_UNREAL_TEST_EXT_SERVER
          Should tests use external UCC instance or they will run internal one?
POGAMUT_UT2004_BOT_HOST
          Where the bot should connect to (hostname of the server running GameBots2004)
POGAMUT_UT2004_BOT_PORT
          Where the bot should connect to (bot port of the GameBots2004).
POGAMUT_UT2004_OBSERVER_HOST
          Where the observer should connect to (hostname of the server running GameBots2004)
POGAMUT_UT2004_OBSERVER_PORT
          Where the observer should connect to (observer port of the GameBots2004)
POGAMUT_UT2004_SERVER_HOST
          Where the server should connect to (hostname of the server running GameBots2004)
POGAMUT_UT2004_SERVER_PORT
          Where the server should connect to (server port of the GameBots2004)
 
Method Summary
 java.lang.String getKey()
           
 java.lang.String toString()
           
static PogamutUT2004Property valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PogamutUT2004Property[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

POGAMUT_UT2004_BOT_HOST

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_HOST
Where the bot should connect to (hostname of the server running GameBots2004)


POGAMUT_UT2004_BOT_PORT

public static final PogamutUT2004Property POGAMUT_UT2004_BOT_PORT
Where the bot should connect to (bot port of the GameBots2004).


POGAMUT_UT2004_SERVER_HOST

public static final PogamutUT2004Property POGAMUT_UT2004_SERVER_HOST
Where the server should connect to (hostname of the server running GameBots2004)


POGAMUT_UT2004_SERVER_PORT

public static final PogamutUT2004Property POGAMUT_UT2004_SERVER_PORT
Where the server should connect to (server port of the GameBots2004)


POGAMUT_UT2004_OBSERVER_HOST

public static final PogamutUT2004Property POGAMUT_UT2004_OBSERVER_HOST
Where the observer should connect to (hostname of the server running GameBots2004)


POGAMUT_UT2004_OBSERVER_PORT

public static final PogamutUT2004Property POGAMUT_UT2004_OBSERVER_PORT
Where the observer should connect to (observer port of the GameBots2004)


POGAMUT_UNREAL_HOME

public static final PogamutUT2004Property POGAMUT_UNREAL_HOME
Path to the Unreal home dir.


POGAMUT_UNREAL_TEST_EXT_SERVER

public static final PogamutUT2004Property POGAMUT_UNREAL_TEST_EXT_SERVER
Should tests use external UCC instance or they will run internal one?

Method Detail

values

public static PogamutUT2004Property[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PogamutUT2004Property c : PogamutUT2004Property.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PogamutUT2004Property valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getKey

public java.lang.String getKey()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<PogamutUT2004Property>