Package com.streambase.liveview.client
Enum LiveViewQueryLanguage
- java.lang.Object
- 
- java.lang.Enum<LiveViewQueryLanguage>
- 
- com.streambase.liveview.client.LiveViewQueryLanguage
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<LiveViewQueryLanguage>
 
 public enum LiveViewQueryLanguage extends Enum<LiveViewQueryLanguage> Enumerates the query languages that are supported by a table- Since:
- 1.4
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ACTIVE_SPACESThe Active Spaces query language, which is a subset of SQL or LiveView.LIVEVIEWThe default LiveView query language, using the StreamBase expression language and some LiveView specific operators.OTHERThis is some language other than the basic LiveView language or SQL.SQLIn general, this refers to standard SQL.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static LiveViewQueryLanguagevalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
LIVEVIEWpublic static final LiveViewQueryLanguage LIVEVIEW The default LiveView query language, using the StreamBase expression language and some LiveView specific operators. Refer to the documentation for complete details.
 - 
SQLpublic static final LiveViewQueryLanguage 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_SPACESpublic static final LiveViewQueryLanguage ACTIVE_SPACES The Active Spaces query language, which is a subset of SQL or LiveView.- Since:
- LiveView 1.6
 
 - 
OTHERpublic static final LiveViewQueryLanguage 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 Detail- 
valuespublic static LiveViewQueryLanguage[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LiveViewQueryLanguage c : LiveViewQueryLanguage.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LiveViewQueryLanguage valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-