public static enum QueueProcessingException.RetryPolicy extends Enum<QueueProcessingException.RetryPolicy>
Enum Constant and Description |
---|
DROP_MESSAGE |
FATAL_SHUTDOWN |
RETRY |
Modifier and Type | Method and Description |
---|---|
static QueueProcessingException.RetryPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueProcessingException.RetryPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueProcessingException.RetryPolicy FATAL_SHUTDOWN
public static final QueueProcessingException.RetryPolicy DROP_MESSAGE
public static final QueueProcessingException.RetryPolicy RETRY
public static QueueProcessingException.RetryPolicy[] values()
for (QueueProcessingException.RetryPolicy c : QueueProcessingException.RetryPolicy.values()) System.out.println(c);
public static QueueProcessingException.RetryPolicy 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 © 2019 Vitam. All rights reserved.