Package io.smallrye.reactive.messaging
Enum MediatorConfiguration.Production
- java.lang.Object
-
- java.lang.Enum<MediatorConfiguration.Production>
-
- io.smallrye.reactive.messaging.MediatorConfiguration.Production
-
- All Implemented Interfaces:
Serializable
,Comparable<MediatorConfiguration.Production>
- Enclosing interface:
- MediatorConfiguration
public static enum MediatorConfiguration.Production extends Enum<MediatorConfiguration.Production>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETION_STAGE_OF_MESSAGE
COMPLETION_STAGE_OF_PAYLOAD
INDIVIDUAL_MESSAGE
INDIVIDUAL_PAYLOAD
NONE
STREAM_OF_MESSAGE
STREAM_OF_PAYLOAD
UNI_OF_MESSAGE
UNI_OF_PAYLOAD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MediatorConfiguration.Production
valueOf(String name)
Returns the enum constant of this type with the specified name.static MediatorConfiguration.Production[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STREAM_OF_MESSAGE
public static final MediatorConfiguration.Production STREAM_OF_MESSAGE
-
STREAM_OF_PAYLOAD
public static final MediatorConfiguration.Production STREAM_OF_PAYLOAD
-
INDIVIDUAL_PAYLOAD
public static final MediatorConfiguration.Production INDIVIDUAL_PAYLOAD
-
INDIVIDUAL_MESSAGE
public static final MediatorConfiguration.Production INDIVIDUAL_MESSAGE
-
COMPLETION_STAGE_OF_PAYLOAD
public static final MediatorConfiguration.Production COMPLETION_STAGE_OF_PAYLOAD
-
COMPLETION_STAGE_OF_MESSAGE
public static final MediatorConfiguration.Production COMPLETION_STAGE_OF_MESSAGE
-
UNI_OF_PAYLOAD
public static final MediatorConfiguration.Production UNI_OF_PAYLOAD
-
UNI_OF_MESSAGE
public static final MediatorConfiguration.Production UNI_OF_MESSAGE
-
NONE
public static final MediatorConfiguration.Production NONE
-
-
Method Detail
-
values
public static MediatorConfiguration.Production[] 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 (MediatorConfiguration.Production c : MediatorConfiguration.Production.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MediatorConfiguration.Production 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
-
-