org.jdesktop.swingx.search
public class PatternModel extends java.lang.Object
Compiles and holds a Pattern from rawText. There are different predefined strategies to control the compilation:
The StartAnchored property determines if the pattern must match from the beginning of tested strings, or if the pattern can appear anywhere in the tested string. Likewise, the EndAnchored property determines if the pattern must match to the end of the tested string, or if the end of the pattern can appear anywhere in the tested string. The default values (false in both cases) correspond to the common database 'LIKE' operation, where the pattern is considered to be a match if any part of the tested string matches the pattern.
Modifier and Type | Class and Description |
---|---|
static class |
PatternModel.AnchoredSearchMode
Support for anchored input.
|
static class |
PatternModel.RegexCreator
Responsible for converting a "raw text" into a valid
regular expression in the context of a set of rules.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
MATCH_BACKWARDS_ACTION_COMMAND |
static java.lang.String |
MATCH_CASE_ACTION_COMMAND |
static java.lang.String |
MATCH_INCREMENTAL_ACTION_COMMAND |
static java.lang.String |
MATCH_RULE_CONTAINS |
static java.lang.String |
MATCH_RULE_ENDSWITH |
static java.lang.String |
MATCH_RULE_EQUALS |
static java.lang.String |
MATCH_RULE_STARTSWITH |
static java.lang.String |
MATCH_WRAP_ACTION_COMMAND |
static java.lang.String |
REGEX_ANCHORED |
static java.lang.String |
REGEX_MATCH_RULES |
static java.lang.String |
REGEX_UNCHANGED |
static java.lang.String |
REGEX_WILDCARD |
static java.lang.String |
SEARCH_PREFIX
The prefix marker to find component related properties in the
resourcebundle.
|
Constructor and Description |
---|
PatternModel() |
Modifier and Type | Method and Description |
---|---|
void |
addPropertyChangeListener(java.beans.PropertyChangeListener l) |
protected void |
createRegexCreator(java.lang.String mode)
Creates and sets the strategy to use for compiling a pattern from
rawtext.
|
protected void |
firePropertyChange(java.lang.String name,
java.lang.Object oldValue,
java.lang.Object newValue) |
int |
getFoundIndex() |
java.lang.String |
getMatchRule() |
java.util.List |
getMatchRules() |
java.util.regex.Pattern |
getPattern() |
java.lang.String |
getRawText() |
java.lang.String |
getRegexCreatorKey() |
boolean |
isAutoAdjustFoundIndex() |
boolean |
isBackwards() |
boolean |
isCaseSensitive() |
boolean |
isEmpty() |
boolean |
isIncremental() |
boolean |
isWrapping() |
void |
removePropertyChangeListener(java.beans.PropertyChangeListener l) |
void |
setBackwards(boolean backwards) |
void |
setCaseSensitive(boolean caseSensitive) |
void |
setFoundIndex(int foundIndex) |
void |
setIncremental(boolean incremental) |
void |
setMatchRule(java.lang.String category) |
void |
setRawText(java.lang.String findText) |
void |
setRegexCreator(PatternModel.RegexCreator regexCreator)
This is a quick-fix to allow custom strategies for compiling
rawtext to patterns.
|
void |
setRegexCreatorKey(java.lang.String mode)
Set the strategy to use for compiling a pattern from
rawtext.
|
void |
setWrapping(boolean wrapping) |
protected void |
updateFoundIndex(int newFoundIndex) |
public static final java.lang.String SEARCH_PREFIX
public static final java.lang.String REGEX_UNCHANGED
public static final java.lang.String REGEX_ANCHORED
public static final java.lang.String REGEX_WILDCARD
public static final java.lang.String REGEX_MATCH_RULES
public static final java.lang.String MATCH_RULE_CONTAINS
public static final java.lang.String MATCH_RULE_EQUALS
public static final java.lang.String MATCH_RULE_ENDSWITH
public static final java.lang.String MATCH_RULE_STARTSWITH
public static final java.lang.String MATCH_BACKWARDS_ACTION_COMMAND
public static final java.lang.String MATCH_WRAP_ACTION_COMMAND
public static final java.lang.String MATCH_CASE_ACTION_COMMAND
public static final java.lang.String MATCH_INCREMENTAL_ACTION_COMMAND
public int getFoundIndex()
public void setFoundIndex(int foundIndex)
protected void updateFoundIndex(int newFoundIndex)
newFoundIndex
- public boolean isAutoAdjustFoundIndex()
public boolean isBackwards()
public void setBackwards(boolean backwards)
public boolean isWrapping()
public void setWrapping(boolean wrapping)
public void setIncremental(boolean incremental)
public boolean isIncremental()
public boolean isCaseSensitive()
public void setCaseSensitive(boolean caseSensitive)
public java.util.regex.Pattern getPattern()
public java.lang.String getRawText()
public void setRawText(java.lang.String findText)
public boolean isEmpty()
public void addPropertyChangeListener(java.beans.PropertyChangeListener l)
public void removePropertyChangeListener(java.beans.PropertyChangeListener l)
protected void firePropertyChange(java.lang.String name, java.lang.Object oldValue, java.lang.Object newValue)
public void setRegexCreatorKey(java.lang.String mode)
mode
- the String key of the match strategy to use.protected void createRegexCreator(java.lang.String mode)
mode
- the String key of the match strategy to use.public java.lang.String getRegexCreatorKey()
public void setRegexCreator(PatternModel.RegexCreator regexCreator)
regexCreator
- the strategy to use for compiling text
into pattern.public void setMatchRule(java.lang.String category)
public java.lang.String getMatchRule()
public java.util.List getMatchRules()