public enum NotifierTopics extends Enum<NotifierTopics>
| Enum Constant and Description |
|---|
ACCOUNT_UPDATES |
CONTEXT_UPDATES |
DB_UPDATES
Notifications that an object in the data model has changed.
|
MANAGEMENT_DATA |
UPDATE_REQUESTS
Internally generated model update requests.
|
USER_EVENTS
Inbound events from users (the outside world).
|
| Modifier and Type | Method and Description |
|---|---|
static NotifierTopics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotifierTopics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotifierTopics USER_EVENTS
public static final NotifierTopics UPDATE_REQUESTS
public static final NotifierTopics DB_UPDATES
public static final NotifierTopics CONTEXT_UPDATES
public static final NotifierTopics ACCOUNT_UPDATES
public static final NotifierTopics MANAGEMENT_DATA
public static NotifierTopics[] values()
for (NotifierTopics c : NotifierTopics.values()) System.out.println(c);
public static NotifierTopics 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 continual.io. All rights reserved.