public static enum ActiveAasBase.NotificationMode extends Enum<ActiveAasBase.NotificationMode>
| Enum Constant and Description |
|---|
ASYNCHRONOUS
Parallel asynchronous notifications.
|
NONE
No notifications, e.g., for testing.
|
SYNCHRONOUS
Sequential, synchronous notifications, e.g., for testing.
|
| Modifier and Type | Method and Description |
|---|---|
static ActiveAasBase.NotificationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActiveAasBase.NotificationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveAasBase.NotificationMode ASYNCHRONOUS
public static final ActiveAasBase.NotificationMode SYNCHRONOUS
public static final ActiveAasBase.NotificationMode NONE
public static ActiveAasBase.NotificationMode[] values()
for (ActiveAasBase.NotificationMode c : ActiveAasBase.NotificationMode.values()) System.out.println(c);
public static ActiveAasBase.NotificationMode 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 © 2021. All rights reserved.