public static enum TestMailServer.Message extends Enum<TestMailServer.Message>
| Enum Constant and Description |
|---|
COULD_NOT_BIND |
LISTENING |
NAME |
STOPPED |
| Modifier and Type | Method and Description |
|---|---|
static TestMailServer.Message |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestMailServer.Message[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestMailServer.Message NAME
public static final TestMailServer.Message LISTENING
public static final TestMailServer.Message COULD_NOT_BIND
public static final TestMailServer.Message STOPPED
public static TestMailServer.Message[] values()
for (TestMailServer.Message c : TestMailServer.Message.values()) System.out.println(c);
public static TestMailServer.Message valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015 Zalando SE. All rights reserved.