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 Summary
Modifier and TypeMethodDescriptionTranslates the less operator.Translates the greater operator.Translates the greater or equals operator.Translates the less operator.Translates the less or equals operator.Translates the like operator.Translates the not equals operator.
-
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.
-