public enum FlowTopology extends java.lang.Enum<FlowTopology>
Enum Constant and Description |
---|
Gateway
Flow is in a Gateway daemon as part of a three-tier configuration.
|
LocalClient
Flow is in a Java client in local mode as part of a two-tier configuration.
|
RemoteClient
Flow is in a Java client in remote mode as part of a three-tier configuration.
|
Modifier and Type | Method and Description |
---|---|
static FlowTopology |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlowTopology[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowTopology Gateway
public static final FlowTopology RemoteClient
public static final FlowTopology LocalClient
public static FlowTopology[] values()
for (FlowTopology c : FlowTopology.values()) System.out.println(c);
public static FlowTopology 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 null