public enum DataExchangeStrategy extends Enum<DataExchangeStrategy>
Enum Constant and Description |
---|
DrainSender
Übertragung von einer Quelle auf dem Remotesystem zu einem Empfänger auf dem Lokalsystem.
|
ReceiverSource
Übertragung von einer Quelle auf dem Remotesystem zu einem Empfänger auf dem Lokalsystem.
|
SenderDrain
Übertragung von einem Sender auf dem Lokalsystem zu einer Senke auf dem Remotesystem.
|
SourceReceiver
Übertragung von einer Quelle auf dem Lokalsystem zu einem Empfänger auf dem Remotesystem.
|
Modifier and Type | Method and Description |
---|---|
static DataExchangeStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataExchangeStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataExchangeStrategy SourceReceiver
public static final DataExchangeStrategy SenderDrain
public static final DataExchangeStrategy DrainSender
public static final DataExchangeStrategy ReceiverSource
public static DataExchangeStrategy[] values()
for (DataExchangeStrategy c : DataExchangeStrategy.values()) System.out.println(c);
public static DataExchangeStrategy 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 null