Enum AMQPMessage.MessageDataScanningStatus
- java.lang.Object
-
- java.lang.Enum<AMQPMessage.MessageDataScanningStatus>
-
- org.apache.activemq.artemis.protocol.amqp.broker.AMQPMessage.MessageDataScanningStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AMQPMessage.MessageDataScanningStatus>
- Enclosing class:
- AMQPMessage
public static enum AMQPMessage.MessageDataScanningStatus extends java.lang.Enum<AMQPMessage.MessageDataScanningStatus>
This has been made public just for testing purposes: it's not stable and developers shouldn't rely on this for developing purposes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOT_SCANNEDRELOAD_PERSISTENCESCANNED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AMQPMessage.MessageDataScanningStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AMQPMessage.MessageDataScanningStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_SCANNED
public static final AMQPMessage.MessageDataScanningStatus NOT_SCANNED
-
RELOAD_PERSISTENCE
public static final AMQPMessage.MessageDataScanningStatus RELOAD_PERSISTENCE
-
SCANNED
public static final AMQPMessage.MessageDataScanningStatus SCANNED
-
-
Method Detail
-
values
public static AMQPMessage.MessageDataScanningStatus[] 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 (AMQPMessage.MessageDataScanningStatus c : AMQPMessage.MessageDataScanningStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AMQPMessage.MessageDataScanningStatus 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
-
-