Enum Class EventHandlingProperties.ProcessorSettings.Sequencing.Resolution
java.lang.Object
java.lang.Enum<EventHandlingProperties.ProcessorSettings.Sequencing.Resolution>
com.opencqrs.framework.eventhandler.EventHandlingProperties.ProcessorSettings.Sequencing.Resolution
- All Implemented Interfaces:
Serializable
,Comparable<EventHandlingProperties.ProcessorSettings.Sequencing.Resolution>
,Constable
- Enclosing class:
EventHandlingProperties.ProcessorSettings.Sequencing
public static enum EventHandlingProperties.ProcessorSettings.Sequencing.Resolution
extends Enum<EventHandlingProperties.ProcessorSettings.Sequencing.Resolution>
The built-in
EventSequenceResolver
type.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription(Partitioned) instances process events without any pre-defined sequence.(Partitioned) instances process events in-order per second-level subject, i.e.(Partitioned) instances process events in-order per (same) subject. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_SEQUENCE
(Partitioned) instances process events without any pre-defined sequence.- See Also:
-
PER_SUBJECT
(Partitioned) instances process events in-order per (same) subject.- See Also:
-
PER_SECOND_LEVEL_SUBJECT
public static final EventHandlingProperties.ProcessorSettings.Sequencing.Resolution PER_SECOND_LEVEL_SUBJECT(Partitioned) instances process events in-order per second-level subject, i.e. using "/book/4711" as the id for subject "/book/4711/pages/43".- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-