gr.uoa.di.madgik.grs.test
Enum MainTest.TestType

java.lang.Object
  extended by java.lang.Enum<MainTest.TestType>
      extended by gr.uoa.di.madgik.grs.test.MainTest.TestType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MainTest.TestType>
Enclosing class:
MainTest

public static enum MainTest.TestType
extends java.lang.Enum<MainTest.TestType>


Enum Constant Summary
event_store_test
           
event_test
           
file_mediation_test
           
file_test
           
for_each_reader_test
           
full_reader_test
           
iterator_reader_test
           
iterator_two_readers_test
           
object_test
           
store_file_test
           
store_simple_test
           
string_random_iterator_test
           
string_random_test
           
timeout_test
           
url_test
           
 
Method Summary
static MainTest.TestType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MainTest.TestType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

full_reader_test

public static final MainTest.TestType full_reader_test

iterator_reader_test

public static final MainTest.TestType iterator_reader_test

for_each_reader_test

public static final MainTest.TestType for_each_reader_test

iterator_two_readers_test

public static final MainTest.TestType iterator_two_readers_test

timeout_test

public static final MainTest.TestType timeout_test

url_test

public static final MainTest.TestType url_test

file_test

public static final MainTest.TestType file_test

file_mediation_test

public static final MainTest.TestType file_mediation_test

string_random_test

public static final MainTest.TestType string_random_test

string_random_iterator_test

public static final MainTest.TestType string_random_iterator_test

store_simple_test

public static final MainTest.TestType store_simple_test

store_file_test

public static final MainTest.TestType store_file_test

object_test

public static final MainTest.TestType object_test

event_test

public static final MainTest.TestType event_test

event_store_test

public static final MainTest.TestType event_store_test
Method Detail

values

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

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

valueOf

public static MainTest.TestType 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