Java org.apache.commons.lang3.text StrMatcher fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang3.text StrMatcher fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang3.text StrMatcher.

The text is from its open source code.

Method

StrMatchercharSetMatcher(final char... chars)
Constructor that creates a matcher from a set of characters.
StrMatchercharSetMatcher(final String chars)
Constructor that creates a matcher from a string representing a set of characters.
StrMatcherdoubleQuoteMatcher()
Returns a matcher which matches the double quote character.
intisMatch(final char[] buffer, final int pos)
Returns the number of matching characters, zero for no match.
intisMatch(char[] buffer, int pos, int bufferStart, int bufferEnd)
Returns the number of matching characters, zero for no match.
StrMatchernoneMatcher()
Matches no characters.
StrMatcherquoteMatcher()
Returns a matcher which matches the single or double quote character.
StrMatchersingleQuoteMatcher()
Returns a matcher which matches the single quote character.
StrMatcherspaceMatcher()
Returns a matcher which matches the space character.
StrMatcherstringMatcher(final String str)
Constructor that creates a matcher from a string.
StrMatchertrimMatcher()
Matches the String trim() whitespace characters.