Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
List<SchemaColumnDesc> |
CreateWindowClause.getColumns()
Returns all columns for use when create-table syntax is used to define the named window type.
|
List<SchemaColumnDesc> |
CreateSchemaClause.getColumns()
Returns the column definition.
|
Modifier and Type | Method and Description |
---|---|
void |
CreateWindowClause.addColumn(SchemaColumnDesc col)
Adds a column for use when create-table syntax is used to define the named window type.
|
Modifier and Type | Method and Description |
---|---|
void |
CreateWindowClause.setColumns(List<SchemaColumnDesc> columns)
Sets the columns for use when create-table syntax is used to define the named window type.
|
void |
CreateSchemaClause.setColumns(List<SchemaColumnDesc> columns)
Sets the column definition.
|
Constructor and Description |
---|
CreateSchemaClause(String schemaName,
List<SchemaColumnDesc> columns,
Set<String> inherits)
Ctor.
|
CreateSchemaClause(String schemaName,
Set<String> types,
List<SchemaColumnDesc> columns,
Set<String> inherits,
CreateSchemaClauseTypeDef typeDefinition)
Ctor.
|