Package org.frankframework.senders
Enum Class FrankSender.Scope
- All Implemented Interfaces:
 Serializable,Comparable<FrankSender.Scope>,Constable
- Enclosing class:
 FrankSender
Scope for 
FrankSender call: Another Frank!Framework Adapter, or another Java application running in the same JVM.
 ADAPTERis the most efficient, low-overhead method to call another adapter directlyLISTENERcalls another adapter via a configuredFrankListener. Use this when you need all message logging and error handling that is in theReceiver.JVMis the regular way of invoking another Java application in the same JVM.DLLis a special way of invoking the other application, calling code loaded from a DLL that has been registered as service.
JVM and DLL, see the documentation of the IbisServiceDispatcher library
 for further details on how implement a Java program or DLL running alongside the Frank!Framework that can be called from the Frank!Framework.
 See
https://github.com/frankframework/servicedispatcher- 
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> - 
Enum Constant Summary
Enum Constants - 
Method Summary
Modifier and TypeMethodDescriptionstatic FrankSender.ScopeReturns the enum constant of this class with the specified name.static FrankSender.Scope[]values()Returns an array containing the constants of this enum class, in the order they are declared. 
- 
Enum Constant Details
- 
JVM
 - 
DLL
 - 
ADAPTER
 - 
LISTENER
 
 - 
 - 
Method Details
- 
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
 - an array containing the constants of this enum class, in the order they are declared
 
 - 
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
 name- the name of the enum constant to be returned.- Returns:
 - the enum constant with the specified name
 - Throws:
 IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
 
 -