public static enum Exchange.ParallelizationDependency extends Enum<Exchange.ParallelizationDependency>
Enum Constant and Description |
---|
RECEIVER_DEPENDS_ON_SENDER |
SENDER_DEPENDS_ON_RECEIVER |
Modifier and Type | Method and Description |
---|---|
static Exchange.ParallelizationDependency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Exchange.ParallelizationDependency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Exchange.ParallelizationDependency SENDER_DEPENDS_ON_RECEIVER
public static final Exchange.ParallelizationDependency RECEIVER_DEPENDS_ON_SENDER
public static Exchange.ParallelizationDependency[] values()
for (Exchange.ParallelizationDependency c : Exchange.ParallelizationDependency.values()) System.out.println(c);
public static Exchange.ParallelizationDependency 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 © 1970 The Apache Software Foundation. All rights reserved.