Uses of Interface
org.apache.logging.log4j.util.ReadOnlyStringMap
-
Packages that use ReadOnlyStringMap Package Description org.apache.log4j.bridge org.apache.logging.log4j.core Implementation of Log4j 2.org.apache.logging.log4j.core.async Provides Asynchronous Logger classes and interfaces for low-latency logging.org.apache.logging.log4j.core.filter Log4j 2 Filter support.org.apache.logging.log4j.core.impl Log4j 2 private implementation classes.org.apache.logging.log4j.core.lookup Log4j 2 Lookups.org.apache.logging.log4j.core.pattern Provides classes implementing format specifiers in conversion patterns.org.apache.logging.log4j.spi Internal interfaces and classes to be used by authors of logging implementations or for internal use by API classes.org.apache.logging.log4j.util Internal utility classes for the Log4j 2 API. -
-
Uses of ReadOnlyStringMap in org.apache.log4j.bridge
Classes in org.apache.log4j.bridge that implement ReadOnlyStringMap Modifier and Type Class Description private static class
LogEventWrapper.ContextDataMap
Methods in org.apache.log4j.bridge that return ReadOnlyStringMap Modifier and Type Method Description ReadOnlyStringMap
LogEventWrapper. getContextData()
-
Uses of ReadOnlyStringMap in org.apache.logging.log4j.core
Methods in org.apache.logging.log4j.core that return ReadOnlyStringMap Modifier and Type Method Description ReadOnlyStringMap
AbstractLogEvent. getContextData()
ReadOnlyStringMap
LogEvent. getContextData()
Returns theReadOnlyStringMap
object holding context data key-value pairs.ReadOnlyStringMap
ContextDataInjector. rawContextData()
Returns aReadOnlyStringMap
object reflecting the current state of the context. -
Uses of ReadOnlyStringMap in org.apache.logging.log4j.core.async
Methods in org.apache.logging.log4j.core.async that return ReadOnlyStringMap Modifier and Type Method Description ReadOnlyStringMap
RingBufferLogEvent. getContextData()
-
Uses of ReadOnlyStringMap in org.apache.logging.log4j.core.filter
Methods in org.apache.logging.log4j.core.filter that return ReadOnlyStringMap Modifier and Type Method Description private ReadOnlyStringMap
DynamicThresholdFilter. currentContextData()
private ReadOnlyStringMap
ThreadContextMapFilter. currentContextData()
Methods in org.apache.logging.log4j.core.filter with parameters of type ReadOnlyStringMap Modifier and Type Method Description private Filter.Result
DynamicThresholdFilter. filter(Level level, ReadOnlyStringMap contextMap)
protected boolean
MapFilter. filter(ReadOnlyStringMap data)
-
Uses of ReadOnlyStringMap in org.apache.logging.log4j.core.impl
Classes in org.apache.logging.log4j.core.impl that implement ReadOnlyStringMap Modifier and Type Class Description class
JdkMapAdapterStringMap
Provides a read-onlyStringMap
view of aMap<String, String>
.Methods in org.apache.logging.log4j.core.impl that return ReadOnlyStringMap Modifier and Type Method Description ReadOnlyStringMap
Log4jLogEvent. getContextData()
Returns theReadOnlyStringMap
containing context data key-value pairs.ReadOnlyStringMap
MutableLogEvent. getContextData()
ReadOnlyStringMap
ThreadContextDataInjector.ForCopyOnWriteThreadContextMap. rawContextData()
ReadOnlyStringMap
ThreadContextDataInjector.ForDefaultThreadContextMap. rawContextData()
ReadOnlyStringMap
ThreadContextDataInjector.ForGarbageFreeThreadContextMap. rawContextData()
Methods in org.apache.logging.log4j.core.impl with parameters of type ReadOnlyStringMap Modifier and Type Method Description static StringMap
ContextDataFactory. createContextData(ReadOnlyStringMap readOnlyStringMap)
private static StringMap
Log4jLogEvent.LogEventProxy. memento(ReadOnlyStringMap data)
void
JdkMapAdapterStringMap. putAll(ReadOnlyStringMap source)
-
Uses of ReadOnlyStringMap in org.apache.logging.log4j.core.lookup
Methods in org.apache.logging.log4j.core.lookup that return ReadOnlyStringMap Modifier and Type Method Description private ReadOnlyStringMap
ContextMapLookup. currentContextData()
-
Uses of ReadOnlyStringMap in org.apache.logging.log4j.core.pattern
Methods in org.apache.logging.log4j.core.pattern with parameters of type ReadOnlyStringMap Modifier and Type Method Description private static void
MdcPatternConverter. appendFully(ReadOnlyStringMap contextData, java.lang.StringBuilder toAppendTo)
private static void
MdcPatternConverter. appendSelectedKeys(java.lang.String[] keys, ReadOnlyStringMap contextData, java.lang.StringBuilder sb)
-
Uses of ReadOnlyStringMap in org.apache.logging.log4j.spi
Classes in org.apache.logging.log4j.spi that implement ReadOnlyStringMap Modifier and Type Class Description class
DefaultThreadContextMap
The actual ThreadContext Map.Methods in org.apache.logging.log4j.spi with parameters of type ReadOnlyStringMap Modifier and Type Method Description protected StringMap
CopyOnWriteSortedArrayThreadContextMap. createStringMap(ReadOnlyStringMap original)
Returns an implementation of theStringMap
used to back this thread context map, pre-populated with the contents of the specified context data.protected StringMap
GarbageFreeSortedArrayThreadContextMap. createStringMap(ReadOnlyStringMap original)
Returns an implementation of theStringMap
used to back this thread context map, pre-populated with the contents of the specified context data. -
Uses of ReadOnlyStringMap in org.apache.logging.log4j.util
Subinterfaces of ReadOnlyStringMap in org.apache.logging.log4j.util Modifier and Type Interface Description interface
IndexedReadOnlyStringMap
An extension ofReadOnlyStringMap
that imposes a total ordering on its keys.interface
IndexedStringMap
An extension ofStringMap
that imposes a total ordering on its keys.interface
StringMap
Exposes methods to add and remove key-value pairs to and fromReadOnlyStringMap
.Classes in org.apache.logging.log4j.util that implement ReadOnlyStringMap Modifier and Type Class Description class
SortedArrayStringMap
Consider this class private. Array-based implementation of theReadOnlyStringMap
interface.Methods in org.apache.logging.log4j.util with parameters of type ReadOnlyStringMap Modifier and Type Method Description void
SortedArrayStringMap. putAll(ReadOnlyStringMap source)
void
StringMap. putAll(ReadOnlyStringMap source)
Copies all key-value pairs from the specifiedReadOnlyStringMap
into thisStringMap
.Constructors in org.apache.logging.log4j.util with parameters of type ReadOnlyStringMap Constructor Description SortedArrayStringMap(ReadOnlyStringMap other)
-