Interface QueryParser


public interface QueryParser
This interface is to define the functionality of a query Parser.
  • Method Summary

    Modifier and Type
    Method
    Description
    parameterTypeIterator(String parameterDeclarations)
    This method returns an iterator over the parameter types of the specified parameter declaration.
  • Method Details

    • parameterTypeIterator

      Iterator<String> parameterTypeIterator(String parameterDeclarations)
      This method returns an iterator over the parameter types of the specified parameter declaration. The types are represented by their name, thus the Iterator's next method returns Strings.
      Parameters:
      parameterDeclarations - parameter declaration string.