Package com.streambase.liveview.client
Enum Class LiveViewQueryLanguage
- All Implemented Interfaces:
Serializable
,Comparable<LiveViewQueryLanguage>
,Constable
Enumerates the query languages that are supported by a table
- Since:
- 1.4
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe Active Spaces query language, which is a subset of SQL or LiveView.The default LiveView query language, using the StreamBase expression language and some LiveView specific operators.This is some language other than the basic LiveView language or SQL.In general, this refers to standard SQL. -
Method Summary
Modifier and TypeMethodDescriptionstatic LiveViewQueryLanguage
Returns the enum constant of this class with the specified name.static LiveViewQueryLanguage[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LIVEVIEW
The default LiveView query language, using the StreamBase expression language and some LiveView specific operators. Refer to the documentation for complete details. -
SQL
In general, this refers to standard SQL. Specifically in the context of LiveView, this means a SQL compatible with the target SQL database being queried. LiveView will do a simple pass-through to the underlying database, with no translation of SQL variants. -
ACTIVE_SPACES
The Active Spaces query language, which is a subset of SQL or LiveView.- Since:
- LiveView 1.6
-
OTHER
This is some language other than the basic LiveView language or SQL. There will be no auto-complete help in the Desktop for the user when using this language.- Since:
- LiveView 1.6
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-