|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.pf.text.StringPattern
public class StringPattern
This class provides services for checking strings against string-patterns.
Currently it supports the wildcards
'*' for any number of any character and
'?' for any one character.
The API is very simple:
There are only the two class methods match() and matchIgnoreCase().
Example:
StringPattern.match( 'Hello World", "H* W*" ) ; --> evaluates to true
StringPattern.matchIgnoreCase( 'StringPattern", "str???pat*" ) ; --> evaluates to true
Field Summary | |
---|---|
protected static String |
MULTI_WILDCARD
|
protected static char |
MULTICHAR_WILDCARD
|
protected static char |
SINGLECHAR_WILDCARD
|
Constructor Summary | |
---|---|
StringPattern(String pattern)
Initializes the new instance with the string pattern. |
|
StringPattern(String pattern,
boolean ignoreCase)
Initializes the new instance with the string pattern and the selecteion, if case should be ignored when comparing characters. |
|
StringPattern(String pattern,
boolean ignoreCase,
char digitWildcard)
Initializes the new instance with the string pattern and the selecteion, if case should be ignored when comparing characters plus a wildcard character for digits. |
|
StringPattern(String pattern,
char digitWildcard)
Initializes the new instance with the string pattern and a digit wildcard character. |
Method Summary | |
---|---|
protected boolean |
charsAreEqual(char probeChar,
char patternChar)
|
protected Character |
digitWildcard()
|
protected void |
digitWildcard(Character newValue)
|
protected char |
digitWildcardChar()
|
protected boolean |
endNotReached(char character)
|
protected boolean |
endReached(char character)
|
boolean |
getIgnoreCase()
Returns whether or not the pattern matching ignores upper and lower case |
String |
getPattern()
Returns the pattern as string. |
protected char |
getPatternChar(StringExaminer patternIterator,
char probeCh)
|
protected boolean |
hasDigitWildcard()
|
boolean |
hasWildcard()
Returns true if the pattern contains any '*' or '?' wildcard character. |
static boolean |
match(String probe,
String pattern)
Returns true, if the given probe string matches the given pattern. |
boolean |
matches(String probe)
Tests if a specified string matches the pattern. |
static boolean |
matchIgnoreCase(String probe,
String pattern)
Returns true, if the given probe string matches the given pattern. |
protected boolean |
matchReverse(String pattern,
StringExaminer probeIterator)
|
protected StringExaminer |
newExaminer(String str)
|
void |
setDigitWildcardChar(char digitWildcard)
Sets the given character as a wildcard character in this pattern to match only digits ('0'-'9'). |
void |
setIgnoreCase(boolean newValue)
Sets whether the pattern matching should ignore case or not |
void |
setPattern(String newValue)
Sets the pattern to a new value |
protected boolean |
skipAfter(StringExaminer examiner,
String matchString)
Increments the given iterator up to the last character that matched the character sequence in the given matchString. |
protected char |
skipWildcards(StringExaminer iterator)
Moves the iterator position to the next character that is no wildcard. |
protected StringUtil |
strUtil()
|
String |
toString()
Returns the pattern string. |
protected String |
upToEnd(StringExaminer iterator)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected static final String MULTI_WILDCARD
protected static final char MULTICHAR_WILDCARD
protected static final char SINGLECHAR_WILDCARD
Constructor Detail |
---|
public StringPattern(String pattern, boolean ignoreCase)
pattern
- The pattern to check against ( May contain '*' and '?' wildcards )ignoreCase
- Definition, if case sensitive character comparison or not.public StringPattern(String pattern)
pattern
- The pattern to check against ( May contain '*' and '?' wildcards )public StringPattern(String pattern, char digitWildcard)
pattern
- The pattern to check against ( May contain '*', '?' wildcards and the digit wildcard )digitWildcard
- A wildcard character that stands as placeholder for digitspublic StringPattern(String pattern, boolean ignoreCase, char digitWildcard)
pattern
- The pattern to check against ( May contain '*' and '?' wildcards )ignoreCase
- Definition, if case sensitive character comparison or not.digitWildcard
- A wildcard character that stands as placeholder for digitsMethod Detail |
---|
public boolean getIgnoreCase()
public void setIgnoreCase(boolean newValue)
public String getPattern()
public void setPattern(String newValue)
protected Character digitWildcard()
protected void digitWildcard(Character newValue)
public static boolean match(String probe, String pattern)
probe
- The string to check against the pattern.pattern
- The patter, that probably contains wildcards ( '*' or '?' )public static boolean matchIgnoreCase(String probe, String pattern)
probe
- The string to check against the pattern.pattern
- The patter, that probably contains wildcards ( '*' or '?' )public boolean matches(String probe)
probe
- The string to compare to the pattern
public String toString()
toString
in class Object
Object.toString()
public boolean hasWildcard()
public void setDigitWildcardChar(char digitWildcard)
digitWildcard
- The placeholder character for digitsprotected boolean hasDigitWildcard()
protected char digitWildcardChar()
protected char skipWildcards(StringExaminer iterator)
protected boolean skipAfter(StringExaminer examiner, String matchString)
matchString
- The string to be found (must not contain *)protected String upToEnd(StringExaminer iterator)
protected boolean matchReverse(String pattern, StringExaminer probeIterator)
protected boolean charsAreEqual(char probeChar, char patternChar)
protected boolean endReached(char character)
protected boolean endNotReached(char character)
protected char getPatternChar(StringExaminer patternIterator, char probeCh)
protected StringExaminer newExaminer(String str)
protected StringUtil strUtil()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |