 Indexable — An indexable type can be referred to by a qualifier in an event template.
Indexable — An indexable type can be referred to by a qualifier in an event template. Parseable — A parseable type can be parsed and has canParse() and parse()methods. The type can be received by the correlator.
Parseable — A parseable type can be parsed and has canParse() and parse()methods. The type can be received by the correlator. Routable — A routable type can be a field in an event that is
Routable — A routable type can be a field in an event that is Sent by the route statement
Sent by the route statement Sent by the send...to or enqueue...to statement
Sent by the send...to or enqueue...to statement Sent by the enqueue statement
Sent by the enqueue statement Sent outside the correlator with the emit statement
Sent outside the correlator with the emit statement Comparable — A comparable type can be used as follows:
Comparable — A comparable type can be used as follows: Dictionary key
Dictionary key Item in a sequence on which you can call sort() or indexOf()
Item in a sequence on which you can call sort() or indexOf() Stream query partition key
Stream query partition key Stream query group key
Stream query group key Stream query window with-unique key
Stream query window with-unique key Stream query equijoin key
Stream query equijoin key Potentially cyclic — A potentially cyclic type uses the @n notation when it is parsed or converted to a string. When a potentially cyclic type is cloned, the correlator uses an algorithm that preserves aliases. See Potentially cyclic types
Potentially cyclic — A potentially cyclic type uses the @n notation when it is parsed or converted to a string. When a potentially cyclic type is cloned, the correlator uses an algorithm that preserves aliases. See Potentially cyclic types Acyclic — An acyclic type is a type that is not potentially cyclic.
Acyclic — An acyclic type is a type that is not potentially cyclic. E-free — E-free types cannot contain references to instances of a particular event type E. This property is used only to determine whether E is acyclic.
E-free — E-free types cannot contain references to instances of a particular event type E. This property is used only to determine whether E is acyclic.| Type | Indexable | Parseable | Routable | Comparable | Acyclic | E-free | 
| boolean |  |  |  |  |  |  | 
| decimal |  |  |  |  1 |  |  | 
| float |  |  |  |  1 |  |  | 
| integer |  |  |  |  |  |  | 
| string |  |  |  |  |  |  | 
| location |  |  |  |  |  |  | 
| Channel |  |  2 |  |  |  |  | 
| Exception |  |  |  |  |  |  | 
| context |  |  |  3 |  |  |  | 
| listener |  |  |  |  |  |  | 
| chunk |  |  |  |  |  |  | 
| stream |  |  |  |  |  |  | 
| action |  |  |  |  |  |  | 
| sequence |  |  |  |  |  |  | 
| dictionary |  |  |  |  |  |  | 
| event E |  |  4 |  4 |  |  |  | 
|  | Yes. This type has the corresponding property. 1 Attempts to use a NaN in a key terminates the monitor instance. 2 A Channel object is parseable only when it contains a string. 3 Although a context can be enqueued, it is not parseable, so the correlator will reject it from the input queue with a warning. | 
|  | No. This type does not have the corresponding property. | 
|  | This type inherits the corresponding property from its constituent types, that is, the item type in a sequence, the key and item types in a dictionary, the types of fields in an event. The type has the corresponding property only when all its constituent types have that property. 4 An event defined inside a monitor cannot be received from an external source nor emitted from that correlator. An event defined inside a monitor can be sent or enqueued only within the same correlator. | 
|  | The type is comparable only when all its constituent types are both comparable and acyclic. | 
|  | An event E is acyclic only when all its constituent types are both acyclic and E-free. |