Class CountMatchesTagger.MatchDetails
- java.lang.Object
-
- com.norconex.importer.handler.tagger.impl.CountMatchesTagger.MatchDetails
-
- Enclosing class:
- CountMatchesTagger
@Deprecated public static class CountMatchesTagger.MatchDetails extends Object
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description MatchDetails()
Deprecated.MatchDetails(String fromField, String toField, String value)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object other)
Deprecated.String
getFromField()
Deprecated.String
getToField()
Deprecated.String
getValue()
Deprecated.int
hashCode()
Deprecated.boolean
isCaseSensitive()
Deprecated.Whether the matching should be case sensitive or not.boolean
isRegex()
Deprecated.void
setCaseSensitive(boolean caseSensitive)
Deprecated.Sets whether to do a case sensitive match or not.void
setFromField(String fromField)
Deprecated.Sets the field with the value we want to perform matches on.void
setRegex(boolean regex)
Deprecated.Sets whether thevalue
to match is a regular expression.void
setToField(String toField)
Deprecated.Sets the field to store the match count.void
setValue(String value)
Deprecated.Sets the text or regular expression to matchString
toString()
Deprecated.
-
-
-
Method Detail
-
getFromField
public String getFromField()
Deprecated.
-
getValue
public String getValue()
Deprecated.
-
getToField
public String getToField()
Deprecated.
-
isRegex
public boolean isRegex()
Deprecated.
-
isCaseSensitive
public boolean isCaseSensitive()
Deprecated.Whether the matching should be case sensitive or not.- Returns:
true
if case sensitive
-
setFromField
public void setFromField(String fromField)
Deprecated.Sets the field with the value we want to perform matches on.- Parameters:
fromField
- field with the value to perform matches on
-
setValue
public void setValue(String value)
Deprecated.Sets the text or regular expression to match- Parameters:
value
- the substring to match or regular expression
-
setToField
public void setToField(String toField)
Deprecated.Sets the field to store the match count.- Parameters:
toField
- field to store the match count
-
setRegex
public void setRegex(boolean regex)
Deprecated.Sets whether thevalue
to match is a regular expression.- Parameters:
regex
-true
ifvalue
is a regular expression
-
setCaseSensitive
public void setCaseSensitive(boolean caseSensitive)
Deprecated.Sets whether to do a case sensitive match or not. Matches are not case sensitive by default.- Parameters:
caseSensitive
-true
if doing a case sensitive match
-
-