public enum ImaSubscriptionType extends Enum<ImaSubscriptionType>
| Enum Constant and Description |
|---|
Durable
Durable
|
NonDurable
Non durable
|
| Modifier and Type | Field and Description |
|---|---|
static String |
COPYRIGHT |
| Modifier and Type | Method and Description |
|---|---|
static ImaSubscriptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImaSubscriptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImaSubscriptionType NonDurable
public static final ImaSubscriptionType Durable
public static final String COPYRIGHT
public static ImaSubscriptionType[] values()
for (ImaSubscriptionType c : ImaSubscriptionType.values()) System.out.println(c);
public static ImaSubscriptionType 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 © Contributors to the Eclipse Foundation 2014-2021