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

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

Introduction

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

Prototype

public static StrMatcher spaceMatcher() 

Source Link

Document

Returns a matcher which matches the space 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();
}