public static enum SubscriberExceptionHandler.Action extends java.lang.Enum<SubscriberExceptionHandler.Action>
| Enum Constant and Description | 
|---|
Continue
Continue to receive further messages. 
 | 
Stop
Close the subscriber and stop receiving messages. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static SubscriberExceptionHandler.Action | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SubscriberExceptionHandler.Action[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SubscriberExceptionHandler.Action Continue
public static final SubscriberExceptionHandler.Action Stop
public static SubscriberExceptionHandler.Action[] values()
for (SubscriberExceptionHandler.Action c : SubscriberExceptionHandler.Action.values()) System.out.println(c);
public static SubscriberExceptionHandler.Action 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