Enum JournalType
- java.lang.Object
-
- java.lang.Enum<JournalType>
-
- org.apache.activemq.artemis.core.server.JournalType
-
- All Implemented Interfaces:
Serializable,Comparable<JournalType>
public enum JournalType extends Enum<JournalType>
-
-
Field Summary
Fields Modifier and Type Field Description static StringvalidValues
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JournalTypegetType(String type)static JournalTypevalueOf(String name)Returns the enum constant of this type with the specified name.static JournalType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NIO
public static final JournalType NIO
-
ASYNCIO
public static final JournalType ASYNCIO
-
MAPPED
public static final JournalType MAPPED
-
-
Field Detail
-
validValues
public static final String validValues
-
-
Method Detail
-
values
public static JournalType[] 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 (JournalType c : JournalType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JournalType 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
-
getType
public static JournalType getType(String type)
-
-