Example usage for org.apache.commons.lang3.text StrMatcher singleQuoteMatcher

List of usage examples for org.apache.commons.lang3.text StrMatcher singleQuoteMatcher

Introduction

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

Prototype

public static StrMatcher singleQuoteMatcher() 

Source Link

Document

Returns a matcher which matches the single quote character.

Usage

From source file:org.kalypso.model.wspm.core.profil.sobek.parser.SobekLineParser.java

public SobekLineParser(final LineNumberReader reader) throws IOException, CoreException {
    final String line = reader.readLine();
    if (line == null)
        throw SobekParsing.throwError(format(Messages.getString("SobekLineParser_0"))); //$NON-NLS-1$

    m_tokenizer = new StrTokenizer(line, StrMatcher.spaceMatcher(), StrMatcher.singleQuoteMatcher());
    m_lineNumber = reader.getLineNumber();
}