Class ConfigurationCompilerLanguage
java.lang.Object
com.espertech.esper.common.client.configuration.compiler.ConfigurationCompilerLanguage
- All Implemented Interfaces:
Serializable
Language settings in the runtime are for string comparisons.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns true to indicate to perform locale-independent string comparisons using Collator.void
setSortUsingCollator
(boolean sortUsingCollator) Set to true to indicate to perform locale-independent string comparisons using Collator.
-
Constructor Details
-
ConfigurationCompilerLanguage
public ConfigurationCompilerLanguage()Ctor.
-
-
Method Details
-
isSortUsingCollator
public boolean isSortUsingCollator()Returns true to indicate to perform locale-independent string comparisons using Collator.By default this setting is false, i.e. string comparisons use the compare method.
- Returns:
- indicator whether to use Collator for string comparisons
-
setSortUsingCollator
public void setSortUsingCollator(boolean sortUsingCollator) Set to true to indicate to perform locale-independent string comparisons using Collator.Set to false to perform string comparisons via the compare method (the default).
- Parameters:
sortUsingCollator
- indicator whether to use Collator for string comparisons
-