Package com.ibm.ima.plugin
Enum ImaSubscriptionType
- Object
-
- Enum<ImaSubscriptionType>
-
- com.ibm.ima.plugin.ImaSubscriptionType
-
- All Implemented Interfaces:
Serializable
,Comparable<ImaSubscriptionType>
public enum ImaSubscriptionType extends Enum<ImaSubscriptionType>
Define the type of a shared subscription
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Durable
DurableNonDurable
Non durable
-
Field Summary
Fields Modifier and Type Field Description static String
COPYRIGHT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
NonDurable
public static final ImaSubscriptionType NonDurable
Non durable
-
Durable
public static final ImaSubscriptionType Durable
Durable
-
-
Field Detail
-
COPYRIGHT
public static final String COPYRIGHT
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ImaSubscriptionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ImaSubscriptionType c : ImaSubscriptionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImaSubscriptionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-