public enum EmulatorType extends java.lang.Enum<EmulatorType>
| Enum Constant and Description |
|---|
HTTP_CONSUMER |
HTTP_PRODUCER |
TCP_CONSUMER |
TCP_PRODUCER |
| Modifier and Type | Method and Description |
|---|---|
static EmulatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmulatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmulatorType HTTP_CONSUMER
public static final EmulatorType HTTP_PRODUCER
public static final EmulatorType TCP_CONSUMER
public static final EmulatorType TCP_PRODUCER
public static EmulatorType[] values()
for (EmulatorType c : EmulatorType.values()) System.out.println(c);
public static EmulatorType 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 namejava.lang.NullPointerException - if the argument is nullCopyright © 2005-2021 Apache Software Foundation. All Rights Reserved.