Enum SQLProvider.DatabaseStoreType
- java.lang.Object
-
- java.lang.Enum<SQLProvider.DatabaseStoreType>
-
- org.apache.activemq.artemis.jdbc.store.sql.SQLProvider.DatabaseStoreType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SQLProvider.DatabaseStoreType>
- Enclosing interface:
- SQLProvider
public static enum SQLProvider.DatabaseStoreType extends java.lang.Enum<SQLProvider.DatabaseStoreType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINDINGS_JOURNALLARGE_MESSAGEMESSAGE_JOURNALNODE_MANAGERPAGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SQLProvider.DatabaseStoreTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SQLProvider.DatabaseStoreType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAGE
public static final SQLProvider.DatabaseStoreType PAGE
-
MESSAGE_JOURNAL
public static final SQLProvider.DatabaseStoreType MESSAGE_JOURNAL
-
BINDINGS_JOURNAL
public static final SQLProvider.DatabaseStoreType BINDINGS_JOURNAL
-
LARGE_MESSAGE
public static final SQLProvider.DatabaseStoreType LARGE_MESSAGE
-
NODE_MANAGER
public static final SQLProvider.DatabaseStoreType NODE_MANAGER
-
-
Method Detail
-
values
public static SQLProvider.DatabaseStoreType[] 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 (SQLProvider.DatabaseStoreType c : SQLProvider.DatabaseStoreType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SQLProvider.DatabaseStoreType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-