public static enum EventPattern.PatternType extends Enum<EventPattern.PatternType>
| Enum Constant and Description |
|---|
ORDERED
Ordered patterns specify event arrival order and event
minimum and maximum quantities.
|
UNORDERED
Unordered patterns specify event minimum and maximum
quantities only, allowing events to arrive in any
order.
|
| Modifier and Type | Method and Description |
|---|---|
static EventPattern.PatternType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventPattern.PatternType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventPattern.PatternType ORDERED
public static final EventPattern.PatternType UNORDERED
public static EventPattern.PatternType[] values()
for (EventPattern.PatternType c : EventPattern.PatternType.values()) System.out.println(c);
public static EventPattern.PatternType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.