Package ch.qos.logback.core.boolex
Class Matcher
- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareBase
-
- ch.qos.logback.core.boolex.Matcher
-
- All Implemented Interfaces:
ContextAware
,LifeCycle
@Deprecated(since="2022-01-27") public class Matcher extends ContextAwareBase implements LifeCycle
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description Matcher()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getName()
Deprecated.String
getRegex()
Deprecated.boolean
isCanonEq()
Deprecated.boolean
isCaseSensitive()
Deprecated.boolean
isStarted()
Deprecated.boolean
isUnicodeCase()
Deprecated.boolean
matches(String input)
Deprecated.Checks whether the input matches the regular expression.void
setCanonEq(boolean canonEq)
Deprecated.void
setCaseSensitive(boolean caseSensitive)
Deprecated.void
setName(String name)
Deprecated.void
setRegex(String regex)
Deprecated.void
setUnicodeCase(boolean unicodeCase)
Deprecated.void
start()
Deprecated.void
stop()
Deprecated.-
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getStatusManager, setContext
-
-
-
-
Method Detail
-
getRegex
public String getRegex()
Deprecated.
-
setRegex
public void setRegex(String regex)
Deprecated.
-
matches
public boolean matches(String input) throws EvaluationException
Deprecated.Checks whether the input matches the regular expression.- Parameters:
input
-- Returns:
- Throws:
EvaluationException
-
isCanonEq
public boolean isCanonEq()
Deprecated.
-
setCanonEq
public void setCanonEq(boolean canonEq)
Deprecated.
-
isCaseSensitive
public boolean isCaseSensitive()
Deprecated.
-
setCaseSensitive
public void setCaseSensitive(boolean caseSensitive)
Deprecated.
-
isUnicodeCase
public boolean isUnicodeCase()
Deprecated.
-
setUnicodeCase
public void setUnicodeCase(boolean unicodeCase)
Deprecated.
-
getName
public String getName()
Deprecated.
-
setName
public void setName(String name)
Deprecated.
-
-