Parses a String form of a Statement query and returns an instance of an AnalyticsQuery if the query is well-formed.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (6.2.2.8614)

Syntax

C#
public static AnalyticsQuery parseQuery(
	string query
)
Visual Basic
Public Shared Function parseQuery ( _
	query As String _
) As AnalyticsQuery
Visual C++
public:
static AnalyticsQuery^ parseQuery(
	String^ query
)

Parameters

query
Type: System..::..String
A Statement query in a String text-based syntax.

Return Value

An AnalyticsQuery object

Exceptions

ExceptionCondition
Endeca.Navigation.Analytics..::..SyntaxException If the query is malformed or null or is malformed.

See Also