Uses of Class
org.apache.logging.log4j.core.lookup.StrMatcher
Packages that use StrMatcher
-
Uses of StrMatcher in org.apache.logging.log4j.core.lookup
Subclasses of StrMatcher in org.apache.logging.log4j.core.lookupModifier and TypeClassDescription(package private) static final class
Class used to define a character for matching purposes.(package private) static final class
Class used to define a set of characters for matching purposes.(package private) static final class
Class used to match no characters.(package private) static final class
Class used to define a set of characters for matching purposes.(package private) static final class
Class used to match whitespace as per trim().Fields in org.apache.logging.log4j.core.lookup declared as StrMatcherModifier and TypeFieldDescriptionprivate static final StrMatcher
StrMatcher.COMMA_MATCHER
Matches the comma character.static final StrMatcher
StrSubstitutor.DEFAULT_PREFIX
Constant for the default variable prefix.static final StrMatcher
StrSubstitutor.DEFAULT_SUFFIX
Constant for the default variable suffix.static final StrMatcher
StrSubstitutor.DEFAULT_VALUE_DELIMITER
static final StrMatcher
StrSubstitutor.DEFAULT_VALUE_ESCAPE_DELIMITER
private static final StrMatcher
StrMatcher.DOUBLE_QUOTE_MATCHER
Matches the double quote character.private static final StrMatcher
StrMatcher.NONE_MATCHER
Matches no characters.private StrMatcher
StrSubstitutor.prefixMatcher
Stores the variable prefix.private static final StrMatcher
StrMatcher.QUOTE_MATCHER
Matches the single or double quote character.private static final StrMatcher
StrMatcher.SINGLE_QUOTE_MATCHER
Matches the double quote character.private static final StrMatcher
StrMatcher.SPACE_MATCHER
Matches the space character.private static final StrMatcher
StrMatcher.SPLIT_MATCHER
Matches the same characters as StringTokenizer, namely space, tab, newline, formfeed.private StrMatcher
StrSubstitutor.suffixMatcher
Stores the variable suffix.private static final StrMatcher
StrMatcher.TAB_MATCHER
Matches the tab character.private static final StrMatcher
StrMatcher.TRIM_MATCHER
Matches the String trim() whitespace characters.private StrMatcher
StrSubstitutor.valueDelimiterMatcher
private StrMatcher
StrSubstitutor.valueEscapeDelimiterMatcher
Escape string to avoid matching the value delimiter matcher;Methods in org.apache.logging.log4j.core.lookup that return StrMatcherModifier and TypeMethodDescriptionstatic StrMatcher
StrMatcher.charMatcher
(char ch) Constructor that creates a matcher from a character.static StrMatcher
StrMatcher.charSetMatcher
(char[] chars) Constructor that creates a matcher from a set of characters.static StrMatcher
StrMatcher.charSetMatcher
(String chars) Constructor that creates a matcher from a string representing a set of characters.static StrMatcher
StrMatcher.commaMatcher()
Returns a matcher which matches the comma character.static StrMatcher
StrMatcher.doubleQuoteMatcher()
Returns a matcher which matches the double quote character.StrSubstitutor.getValueDelimiterMatcher()
Gets the variable default value delimiter matcher currently in use.StrSubstitutor.getVariablePrefixMatcher()
Gets the variable prefix matcher currently in use.StrSubstitutor.getVariableSuffixMatcher()
Gets the variable suffix matcher currently in use.static StrMatcher
StrMatcher.noneMatcher()
Matches no characters.static StrMatcher
StrMatcher.quoteMatcher()
Returns a matcher which matches the single or double quote character.static StrMatcher
StrMatcher.singleQuoteMatcher()
Returns a matcher which matches the single quote character.static StrMatcher
StrMatcher.spaceMatcher()
Returns a matcher which matches the space character.static StrMatcher
StrMatcher.splitMatcher()
Matches the same characters as StringTokenizer, namely space, tab, newline and formfeed.static StrMatcher
StrMatcher.stringMatcher
(String str) Constructor that creates a matcher from a string.static StrMatcher
StrMatcher.tabMatcher()
Returns a matcher which matches the tab character.static StrMatcher
StrMatcher.trimMatcher()
Matches the String trim() whitespace characters.Methods in org.apache.logging.log4j.core.lookup with parameters of type StrMatcherModifier and TypeMethodDescriptionStrSubstitutor.setValueDelimiterMatcher
(StrMatcher valueDelimiterMatcher) Sets the variable default value delimiter matcher to use.StrSubstitutor.setVariablePrefixMatcher
(StrMatcher prefixMatcher) Sets the variable prefix matcher currently in use.StrSubstitutor.setVariableSuffixMatcher
(StrMatcher suffixMatcher) Sets the variable suffix matcher currently in use.Constructors in org.apache.logging.log4j.core.lookup with parameters of type StrMatcherModifierConstructorDescriptionStrSubstitutor
(StrLookup variableResolver, StrMatcher prefixMatcher, StrMatcher suffixMatcher, char escape) Creates a new instance and initializes it.StrSubstitutor
(StrLookup variableResolver, StrMatcher prefixMatcher, StrMatcher suffixMatcher, char escape, StrMatcher valueDelimiterMatcher) Creates a new instance and initializes it.StrSubstitutor
(StrLookup variableResolver, StrMatcher prefixMatcher, StrMatcher suffixMatcher, char escape, StrMatcher valueDelimiterMatcher, StrMatcher valueEscapeMatcher) Creates a new instance and initializes it.