public enum LiveViewQueryLanguage extends java.lang.Enum<LiveViewQueryLanguage>
Enum Constant and Description |
---|
ACTIVE_SPACES
The Active Spaces query language, which is a subset of SQL or LiveView.
|
LIVEVIEW
The default LiveView query language, using the StreamBase expression language
and some LiveView specific operators.
|
OTHER
This is some language other than the basic LiveView language or SQL.
|
SQL
In general, this refers to standard SQL.
|
Modifier and Type | Method and Description |
---|---|
static LiveViewQueryLanguage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiveViewQueryLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiveViewQueryLanguage LIVEVIEW
public static final LiveViewQueryLanguage SQL
public static final LiveViewQueryLanguage ACTIVE_SPACES
public static final LiveViewQueryLanguage OTHER
public static LiveViewQueryLanguage[] values()
for (LiveViewQueryLanguage c : LiveViewQueryLanguage.values()) System.out.println(c);
public static LiveViewQueryLanguage valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null