public enum ExpiryTestStage extends Enum<ExpiryTestStage>
| Enum Constant and Description |
|---|
POST_FILTER
The expiry predicate should be tested after the subscriptions filters have been evaluated
|
POST_HANDLE
The expiry predicate should be tested after the event has been handled
|
PRE
The expiry predicate should be tested before the event is filtered or handled
|
| Modifier and Type | Method and Description |
|---|---|
static ExpiryTestStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpiryTestStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpiryTestStage PRE
public static final ExpiryTestStage POST_FILTER
public static final ExpiryTestStage POST_HANDLE
public static ExpiryTestStage[] values()
for (ExpiryTestStage c : ExpiryTestStage.values()) System.out.println(c);
public static ExpiryTestStage 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 © 2022. All rights reserved.