public enum StatementType extends Enum<StatementType>
Enum Constant and Description |
---|
CREATE_CONTEXT
Create-context statement.
|
CREATE_DATAFLOW
Create-graph statement.
|
CREATE_EXPRESSION
Create-expression statement.
|
CREATE_INDEX
Create-index statement.
|
CREATE_SCHEMA
Create-schema statement.
|
CREATE_TABLE
Create a table statement.
|
CREATE_VARIABLE
Create a variable statement.
|
CREATE_WINDOW
Create a named window statement.
|
ESPERIO
EsperIO.
|
INTERNAL_USE_API_COMPILE_EXPR
Statement for compiling an expression.
|
ON_DELETE
On-delete statement.
|
ON_INSERT
On-insert statement.
|
ON_MERGE
On-merge statement.
|
ON_SELECT
On-select statement.
|
ON_SET
On-set statement.
|
ON_SPLITSTREAM
On-merge statement.
|
ON_UPDATE
On-update statement.
|
SELECT
Select statement that may contain one or more patterns.
|
UPDATE
Update statement.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isOnTriggerInfra()
Returns true for on-action statements that operate against named windows or tables.
|
static StatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementType SELECT
public static final StatementType CREATE_WINDOW
public static final StatementType CREATE_VARIABLE
public static final StatementType CREATE_TABLE
public static final StatementType CREATE_SCHEMA
public static final StatementType CREATE_INDEX
public static final StatementType CREATE_CONTEXT
public static final StatementType CREATE_DATAFLOW
public static final StatementType CREATE_EXPRESSION
public static final StatementType ON_MERGE
public static final StatementType ON_SPLITSTREAM
public static final StatementType ON_DELETE
public static final StatementType ON_SELECT
public static final StatementType ON_INSERT
public static final StatementType ON_SET
public static final StatementType ON_UPDATE
public static final StatementType UPDATE
public static final StatementType ESPERIO
public static final StatementType INTERNAL_USE_API_COMPILE_EXPR
public static StatementType[] values()
for (StatementType c : StatementType.values()) System.out.println(c);
public static StatementType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean isOnTriggerInfra()
Copyright © 2005–2019. All rights reserved.