Package org.jdesktop.swingx.search
Class PatternModel.AnchoredSearchMode
- java.lang.Object
-
- org.jdesktop.swingx.search.PatternModel.RegexCreator
-
- org.jdesktop.swingx.search.PatternModel.AnchoredSearchMode
-
- Enclosing class:
- PatternModel
public static class PatternModel.AnchoredSearchMode extends PatternModel.RegexCreator
Support for anchored input. PENDING: NOT TESTED - simply moved! Need to define requirements...
-
-
Field Summary
-
Fields inherited from class org.jdesktop.swingx.search.PatternModel.RegexCreator
matchRule
-
-
Constructor Summary
Constructors Constructor Description AnchoredSearchMode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
createRegEx(java.lang.String searchExp)
boolean
isAutoDetect()
boolean
isEndAnchored()
returns true if the pattern must match from the beginning of the string, or false if the pattern can match anywhere in a string.boolean
isStartAnchored()
returns true if the pattern must match from the beginning of the string, or false if the pattern can match anywhere in a string.-
Methods inherited from class org.jdesktop.swingx.search.PatternModel.RegexCreator
createContainedRegEx, createEndAnchoredRegEx, createEqualsRegEx, createStartsAnchoredRegEx, getDefaultMatchRule, getMatchRule, getMatchRules, setMatchRule
-
-
-
-
Method Detail
-
isAutoDetect
public boolean isAutoDetect()
- Overrides:
isAutoDetect
in classPatternModel.RegexCreator
-
createRegEx
public java.lang.String createRegEx(java.lang.String searchExp)
- Overrides:
createRegEx
in classPatternModel.RegexCreator
-
isStartAnchored
public boolean isStartAnchored()
returns true if the pattern must match from the beginning of the string, or false if the pattern can match anywhere in a string.
-
isEndAnchored
public boolean isEndAnchored()
returns true if the pattern must match from the beginning of the string, or false if the pattern can match anywhere in a string.
-
-