public static enum PulsarEndpointBuilderFactory.RegexSubscriptionMode extends Enum<PulsarEndpointBuilderFactory.RegexSubscriptionMode>
org.apache.pulsar.client.api.RegexSubscriptionMode enum.| Enum Constant and Description |
|---|
AllTopics |
NonPersistentOnly |
PersistentOnly |
| Modifier and Type | Method and Description |
|---|---|
static PulsarEndpointBuilderFactory.RegexSubscriptionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PulsarEndpointBuilderFactory.RegexSubscriptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PulsarEndpointBuilderFactory.RegexSubscriptionMode PersistentOnly
public static final PulsarEndpointBuilderFactory.RegexSubscriptionMode NonPersistentOnly
public static final PulsarEndpointBuilderFactory.RegexSubscriptionMode AllTopics
public static PulsarEndpointBuilderFactory.RegexSubscriptionMode[] values()
for (PulsarEndpointBuilderFactory.RegexSubscriptionMode c : PulsarEndpointBuilderFactory.RegexSubscriptionMode.values()) System.out.println(c);
public static PulsarEndpointBuilderFactory.RegexSubscriptionMode 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 nullApache Camel