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