|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TestModule.TestType>
server.testmodules.TestModule.TestType
public static enum TestModule.TestType
Enumeration determining the test type.
Enum Constant Summary | |
---|---|
ping
|
|
speed
|
Method Summary | |
---|---|
Communicator |
createTestModule(TestModule.TestType type,
SocketWrapper socket,
AbstractServer server)
Creates the TestModule type. |
static TestModule.TestType |
getTestType(java.lang.String name)
Gets the test type. |
static TestModule.TestType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TestModule.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 |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TestModule.TestType ping
public static final TestModule.TestType speed
Method Detail |
---|
public static TestModule.TestType[] values()
for (TestModule.TestType c : TestModule.TestType.values()) System.out.println(c);
public static TestModule.TestType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic static TestModule.TestType getTestType(java.lang.String name)
name
- The name to of the test that is unknown.
public Communicator createTestModule(TestModule.TestType type, SocketWrapper socket, AbstractServer server)
TestModule
type.
type
- The test type.socket
- The socket used in the test.server
- The server the test is run on.
TestModule
created.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |