public static enum DomainEventPublisher.PublisherType extends Enum<DomainEventPublisher.PublisherType>
| Enum Constant and Description |
|---|
EXTERNAL
Expresses that the events published are intended for external usage.
|
INTERNAL
Expresses that the events published are intended for internal usage.
|
UNDEFINED
Expresses that the target audience of the events is undefined (default).
|
| Modifier and Type | Method and Description |
|---|---|
static DomainEventPublisher.PublisherType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DomainEventPublisher.PublisherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DomainEventPublisher.PublisherType INTERNAL
public static final DomainEventPublisher.PublisherType EXTERNAL
public static final DomainEventPublisher.PublisherType UNDEFINED
public static DomainEventPublisher.PublisherType[] values()
for (DomainEventPublisher.PublisherType c : DomainEventPublisher.PublisherType.values()) System.out.println(c);
public static DomainEventPublisher.PublisherType 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 © 2023. All rights reserved.