public enum IntegrationType extends Enum<IntegrationType>
| Enum Constant and Description |
|---|
LIVE |
MOCK |
SERVER_MOCK |
TEST |
| Modifier and Type | Method and Description |
|---|---|
static IntegrationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegrationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegrationType LIVE
public static final IntegrationType TEST
public static final IntegrationType MOCK
public static final IntegrationType SERVER_MOCK
public static IntegrationType[] values()
for (IntegrationType c : IntegrationType.values()) System.out.println(c);
public static IntegrationType 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 © 2018–2024. All rights reserved.