Example usage for org.apache.commons.lang.text StrMatcher commaMatcher

List of usage examples for org.apache.commons.lang.text StrMatcher commaMatcher

Introduction

In this page you can find the example usage for org.apache.commons.lang.text StrMatcher commaMatcher.

Prototype

public static StrMatcher commaMatcher() 

Source Link

Document

Returns a matcher which matches the comma character.

Usage

From source file:org.eclipse.skalli.services.search.SearchQuery.java

StrTokenizer getTokenizer() {
    StrTokenizer tokenizer = new StrTokenizer("", StrMatcher.commaMatcher(), StrMatcher.quoteMatcher());
    tokenizer.setTrimmerMatcher(StrMatcher.trimMatcher());
    return tokenizer;
}