Enum StorageManager.LargeMessageExtension
- java.lang.Object
-
- java.lang.Enum<StorageManager.LargeMessageExtension>
-
- org.apache.activemq.artemis.core.persistence.StorageManager.LargeMessageExtension
-
- All Implemented Interfaces:
Serializable,Comparable<StorageManager.LargeMessageExtension>
- Enclosing interface:
- StorageManager
public static enum StorageManager.LargeMessageExtension extends Enum<StorageManager.LargeMessageExtension>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExtension()static StorageManager.LargeMessageExtensionvalueOf(String name)Returns the enum constant of this type with the specified name.static StorageManager.LargeMessageExtension[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DURABLE
public static final StorageManager.LargeMessageExtension DURABLE
-
TEMPORARY
public static final StorageManager.LargeMessageExtension TEMPORARY
-
SYNC
public static final StorageManager.LargeMessageExtension SYNC
-
-
Method Detail
-
values
public static StorageManager.LargeMessageExtension[] 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 (StorageManager.LargeMessageExtension c : StorageManager.LargeMessageExtension.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StorageManager.LargeMessageExtension 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
-
getExtension
public String getExtension()
-
-