Interface OperatorTranslator

All Known Implementing Classes:
DefaultOperatorTranslator

public interface OperatorTranslator
Provides the possibility to define an operators syntax for translating from the DSQL operators to the specific query language ones.
Since:
1.0
  • Method Details

    • lessOperator

      String lessOperator()
      Translates the less operator.
      Returns:
      the translated less operator.
    • greaterOperator

      String greaterOperator()
      Translates the greater operator.
      Returns:
      the translated greater operator.
    • lessOrEqualsOperator

      String lessOrEqualsOperator()
      Translates the less or equals operator.
      Returns:
      the translated less or equals operator.
    • equalsOperator

      String equalsOperator()
      Translates the less operator.
      Returns:
      the translated less operator.
    • notEqualsOperator

      String notEqualsOperator()
      Translates the not equals operator.
      Returns:
      the translated not equals operator.
    • greaterOrEqualsOperator

      String greaterOrEqualsOperator()
      Translates the greater or equals operator.
      Returns:
      the translated less operator.
    • likeOperator

      String likeOperator()
      Translates the like operator.
      Returns:
      the translated like operator.