Method Parse
Parse(ExtensionQuery)
Processes the given ExtensionQuery and returns a corresponding
Query instance. Subclasses must either return a Query
instance or raise a ParseException. This method must not return
null
.
Declaration
public abstract Query Parse(ExtensionQuery query)
Parameters
Type | Name | Description |
---|---|---|
ExtensionQuery | query | the extension query |
Returns
Type | Description |
---|---|
Query | a new query instance |
Exceptions
Type | Condition |
---|---|
ParseException | if the query can not be parsed. |