public enum StatementProperty extends Enum<StatementProperty>
Enum Constant and Description |
---|
CONTEXTDEPLOYMENTID
The context deployment id, of type
String , or null if the statement is not associated to a context. |
CONTEXTNAME
The context name, of type
String , or null if the statement is not associated to a context. |
CREATEOBJECTNAME
The name of the EPL-object created by the statement, of type
String , or null if not applicable, i.e. |
EPL
The statement EPL text, of type
String |
STATEMENTTYPE
The statement type, of type
StatementType |
Modifier and Type | Method and Description |
---|---|
static StatementProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementProperty EPL
String
public static final StatementProperty STATEMENTTYPE
StatementType
public static final StatementProperty CREATEOBJECTNAME
String
, or null if not applicable, i.e. the name of the
name window, table, variable, expression, index, schema or expression created by the statement.
Use together with the statement type to determine the type of object.
public static final StatementProperty CONTEXTNAME
String
, or null if the statement is not associated to a context.public static final StatementProperty CONTEXTDEPLOYMENTID
String
, or null if the statement is not associated to a context.public static StatementProperty[] values()
for (StatementProperty c : StatementProperty.values()) System.out.println(c);
public static StatementProperty 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 nullCopyright © 2005–2018. All rights reserved.