public enum InactiveTopicDeleteMode extends Enum<InactiveTopicDeleteMode>
| Enum Constant and Description |
|---|
delete_when_no_subscriptions
The topic can be deleted when no subscriptions and no active producers.
|
delete_when_subscriptions_caught_up
The topic can be deleted when all subscriptions catchup and no active producers/consumers.
|
| Modifier and Type | Method and Description |
|---|---|
static InactiveTopicDeleteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InactiveTopicDeleteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InactiveTopicDeleteMode delete_when_no_subscriptions
public static final InactiveTopicDeleteMode delete_when_subscriptions_caught_up
public static InactiveTopicDeleteMode[] values()
for (InactiveTopicDeleteMode c : InactiveTopicDeleteMode.values()) System.out.println(c);
public static InactiveTopicDeleteMode 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 © 2017–2021 Apache Software Foundation. All rights reserved.