Uses of Class
org.apache.logging.log4j.core.lookup.StrMatcher
Packages that use StrMatcher
-
Uses of StrMatcher in org.apache.logging.log4j.core.lookup
Fields in org.apache.logging.log4j.core.lookup declared as StrMatcherModifier and TypeFieldDescriptionstatic final StrMatcherStrSubstitutor.DEFAULT_PREFIXConstant for the default variable prefix.static final StrMatcherStrSubstitutor.DEFAULT_SUFFIXConstant for the default variable suffix.static final StrMatcherStrSubstitutor.DEFAULT_VALUE_DELIMITERstatic final StrMatcherStrSubstitutor.DEFAULT_VALUE_ESCAPE_DELIMITERMethods in org.apache.logging.log4j.core.lookup that return StrMatcherModifier and TypeMethodDescriptionstatic StrMatcherStrMatcher.charMatcher(char ch) Constructor that creates a matcher from a character.static StrMatcherStrMatcher.charSetMatcher(char[] chars) Constructor that creates a matcher from a set of characters.static StrMatcherStrMatcher.charSetMatcher(String chars) Constructor that creates a matcher from a string representing a set of characters.static StrMatcherStrMatcher.commaMatcher()Returns a matcher which matches the comma character.static StrMatcherStrMatcher.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 StrMatcherStrMatcher.noneMatcher()Matches no characters.static StrMatcherStrMatcher.quoteMatcher()Returns a matcher which matches the single or double quote character.static StrMatcherStrMatcher.singleQuoteMatcher()Returns a matcher which matches the single quote character.static StrMatcherStrMatcher.spaceMatcher()Returns a matcher which matches the space character.static StrMatcherStrMatcher.splitMatcher()Matches the same characters as StringTokenizer, namely space, tab, newline and formfeed.static StrMatcherStrMatcher.stringMatcher(String str) Constructor that creates a matcher from a string.static StrMatcherStrMatcher.tabMatcher()Returns a matcher which matches the tab character.static StrMatcherStrMatcher.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.