cz.cuni.amis.pogamut.udk.utils
Enum PogamutUDKProperty

Package class diagram package PogamutUDKProperty
java.lang.Object
  extended by java.lang.Enum<PogamutUDKProperty>
      extended by cz.cuni.amis.pogamut.udk.utils.PogamutUDKProperty
All Implemented Interfaces:
Serializable, Comparable<PogamutUDKProperty>

public enum PogamutUDKProperty
extends Enum<PogamutUDKProperty>


Enum Constant Summary
POGAMUT_UDK_BOT_HOST
          Where the bot should connect to (hostname of the server running GameBotsUDK)
POGAMUT_UDK_BOT_PORT
          Where the bot should connect to (bot port of the GameBotsUDK).
POGAMUT_UDK_OBSERVER_HOST
          Where the observer should connect to (hostname of the server running GameBotsUDK)
POGAMUT_UDK_OBSERVER_PORT
          Where the observer should connect to (observer port of the GameBotsUDK)
POGAMUT_UDK_SERVER_HOST
          Where the server should connect to (hostname of the server running GameBotsUDK)
POGAMUT_UDK_SERVER_PORT
          Where the server should connect to (server port of the GameBotsUDK)
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?
 
Method Summary
 String getKey()
           
 String toString()
           
static PogamutUDKProperty valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PogamutUDKProperty[] 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_UDK_BOT_HOST

public static final PogamutUDKProperty POGAMUT_UDK_BOT_HOST
Where the bot should connect to (hostname of the server running GameBotsUDK)


POGAMUT_UDK_BOT_PORT

public static final PogamutUDKProperty POGAMUT_UDK_BOT_PORT
Where the bot should connect to (bot port of the GameBotsUDK).


POGAMUT_UDK_SERVER_HOST

public static final PogamutUDKProperty POGAMUT_UDK_SERVER_HOST
Where the server should connect to (hostname of the server running GameBotsUDK)


POGAMUT_UDK_SERVER_PORT

public static final PogamutUDKProperty POGAMUT_UDK_SERVER_PORT
Where the server should connect to (server port of the GameBotsUDK)


POGAMUT_UDK_OBSERVER_HOST

public static final PogamutUDKProperty POGAMUT_UDK_OBSERVER_HOST
Where the observer should connect to (hostname of the server running GameBotsUDK)


POGAMUT_UDK_OBSERVER_PORT

public static final PogamutUDKProperty POGAMUT_UDK_OBSERVER_PORT
Where the observer should connect to (observer port of the GameBotsUDK)


POGAMUT_UNREAL_HOME

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


POGAMUT_UNREAL_TEST_EXT_SERVER

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

Method Detail

values

public static PogamutUDKProperty[] 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 (PogamutUDKProperty c : PogamutUDKProperty.values())
    System.out.println(c);

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

valueOf

public static PogamutUDKProperty valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getKey

public String getKey()

toString

public String toString()
Overrides:
toString in class Enum<PogamutUDKProperty>


Copyright © 2014 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.