Package com.streambase.sb
Class EntityType
java.lang.Object
com.streambase.sb.EntityType
An enumeration that represents the kinds of entities that StreamBase
supports.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EntityTypeRepresents a StreamBase container.static final EntityTypeRepresents a StreamBase dynamic variable.static final EntityTypeRepresents input streams only.static final EntityTypeRepresents StreamBase Module Referencestatic final EntityTypeRepresents a StreamBase operator.static final EntityTypeRepresents output streams only.static final EntityTypeRepresents a StreamBase schema.static final EntityTypeRepresents a StreamBase stream.static final EntityTypeRepresents a StreamBase query table.static final EntityTypeRepresents StreamBase query tables that are not references, or placeholders.static final EntityTypeRepresents a StreamBase window. -
Method Summary
Modifier and TypeMethodDescriptionstatic EntityTypeRetrieve 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
-
-
Method Details
-
forName
Retrieve an EntityType for the given entity name- Parameters:
name- the entity name to lookup- Returns:
- the EntityType found, or null
-
toString
-