Package com.streambase.sb
Class EntityType
java.lang.Object
com.streambase.sb.EntityType
An enumeration that represents the kinds of entities that StreamBase
supports.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final EntityType
Represents a StreamBase container.static final EntityType
Represents a StreamBase dynamic variable.static final EntityType
Represents input streams only.static final EntityType
Represents StreamBase Module Referencestatic final EntityType
Represents a StreamBase operator.static final EntityType
Represents output streams only.static final EntityType
Represents a StreamBase schema.static final EntityType
Represents a StreamBase stream.static final EntityType
Represents a StreamBase query table.static final EntityType
Represents StreamBase query tables that are not references, or placeholders.static final EntityType
Represents a StreamBase window. -
Method Summary
Modifier and TypeMethodDescriptionstatic EntityType
Retrieve an EntityType for the given entity nametoString()
-
Field Details
-
INPUT_STREAMS
Represents input streams only. That is, streams with no upstream operator. -
OUTPUT_STREAMS
Represents output streams only. That is, streams with no downstream operators. -
OPERATOR
Represents a StreamBase operator. -
DYNVAR
Represents a StreamBase dynamic variable. -
WINDOW_SPEC
Represents a StreamBase window. -
STREAM
Represents a StreamBase stream. -
SCHEMA
Represents a StreamBase schema. -
CONTAINER
Represents a StreamBase container. -
TABLE
Represents a StreamBase query table. -
TABLE_CONCRETE
Represents StreamBase query tables that are not references, or placeholders.- Since:
- 7.2.5
-
MODULE_REFERENCE
Represents StreamBase Module Reference- Since:
- 7.6.3
-
-
Method Details