public enum ProcessKind extends Enum<ProcessKind>
| Enum Constant and Description |
|---|
PROCESS
Custom process call to process received messages.
|
RECEIVE
Amqp message process call to receive data.
|
SEND
Amqp Send Message process call to send data.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessKind SEND
public static final ProcessKind RECEIVE
public static final ProcessKind PROCESS
public static ProcessKind[] values()
public static ProcessKind 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 © 2019 Microsoft Corporation. All rights reserved.