public static enum Receiver.OnError extends Enum<Receiver.OnError>
Enum Constant and Description |
---|
CLOSE
Stop the receiver when an error occurs.
|
CONTINUE
Don't stop the receiver when an error occurs.
|
RECOVER
If an error occurs (eg.
|
Modifier and Type | Method and Description |
---|---|
static Receiver.OnError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Receiver.OnError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Receiver.OnError CONTINUE
public static final Receiver.OnError RECOVER
recover.adapters.interval
it will be attempted to (re-) start the receiver.public static final Receiver.OnError CLOSE
public static Receiver.OnError[] values()
for (Receiver.OnError c : Receiver.OnError.values()) System.out.println(c);
public static Receiver.OnError 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 © 2023 Frank!Framework. All rights reserved.