public enum ConnectMode extends java.lang.Enum<ConnectMode>
Enum Constant and Description |
---|
LEGACY
Legacy mode: A single connection between any two components and all events are delivered to the target on the default channel.
|
PARALLEL
Parallel mode: A connection per channel and events are delivered on that channel to the target.
|
Modifier and Type | Method and Description |
---|---|
static ConnectMode |
fromString(java.lang.String s) |
java.lang.String |
toString() |
static ConnectMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectMode LEGACY
public static final ConnectMode PARALLEL
public static ConnectMode[] values()
for (ConnectMode c : ConnectMode.values()) System.out.println(c);
public static ConnectMode 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<ConnectMode>
public static ConnectMode fromString(java.lang.String s)
Submit a bug or feature
Copyright (c) 2013-2018 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG.