Class SelectParser

  • All Implemented Interfaces:
    Parser

    public class SelectParser
    extends java.lang.Object
    implements Parser
    The Select query language. This class will be parsing the Select parameters, and will be used when the query has the SELECT-type.
    Author:
    henrhoi
    • Method Detail

      • parse

        public QueryTree parse​(Parsable query)
        Description copied from interface: Parser
        Parser the given Parsable, and returns a corresponding QueryTree. If parsing fails without an exception, the contained root will be an instance of NullItem.
        Specified by:
        parse in interface Parser
        Parameters:
        query - the Parsable to parse
        Returns:
        the parsed QueryTree, never null
      • getGroupingSteps

        public java.util.List<VespaGroupingStep> getGroupingSteps​(java.lang.String grouping)