public enum SubscriptionPolicy extends java.lang.Enum<SubscriptionPolicy>
Enum Constant | Description |
---|---|
Exclusive |
Exclusive subscription policy is for a single subscriber on a single subscription.
|
Shared |
Shared subscription policy is for multiple subscribers on a single subscription.
|
Modifier and Type | Method | Description |
---|---|---|
static SubscriptionPolicy |
forValue(int value) |
retreives the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static SubscriptionPolicy |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubscriptionPolicy[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionPolicy Shared
public static final SubscriptionPolicy Exclusive
public static SubscriptionPolicy[] values()
for (SubscriptionPolicy c : SubscriptionPolicy.values()) System.out.println(c);
public static SubscriptionPolicy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SubscriptionPolicy forValue(int value)
value
- enum constant indexpublic int getValue()