Uses of Class
org.apache.log4j.spi.Filter
-
Packages that use Filter Package Description org.apache.log4j Log4j 1.x compatibility layer.org.apache.log4j.bridge org.apache.log4j.builders org.apache.log4j.builders.filter org.apache.log4j.config Log4j 1.x compatibility layer.org.apache.log4j.spi Log4j 1.x compatibility layer.org.apache.log4j.xml Log4j 1.x compatibility layer. -
-
Uses of Filter in org.apache.log4j
Fields in org.apache.log4j declared as Filter Modifier and Type Field Description protected Filter
AppenderSkeleton. headFilter
protected Filter
AppenderSkeleton. tailFilter
Methods in org.apache.log4j that return Filter Modifier and Type Method Description Filter
Appender. getFilter()
Returns the head Filter.Filter
AppenderSkeleton. getFilter()
Filter
AppenderSkeleton. getFirstFilter()
Methods in org.apache.log4j with parameters of type Filter Modifier and Type Method Description void
Appender. addFilter(Filter newFilter)
Add a filter to the end of the filter list.void
AppenderSkeleton. addFilter(Filter newFilter)
-
Uses of Filter in org.apache.log4j.bridge
Subclasses of Filter in org.apache.log4j.bridge Modifier and Type Class Description class
FilterWrapper
This acts as a container for Log4j 2 Filters to be attached to Log4j 1 components.Methods in org.apache.log4j.bridge that return Filter Modifier and Type Method Description Filter
AppenderWrapper. getFilter()
Methods in org.apache.log4j.bridge with parameters of type Filter Modifier and Type Method Description void
AppenderWrapper. addFilter(Filter newFilter)
Constructors in org.apache.log4j.bridge with parameters of type Filter Constructor Description FilterAdapter(Filter filter)
-
Uses of Filter in org.apache.log4j.builders
Methods in org.apache.log4j.builders that return Filter Modifier and Type Method Description Filter
BuilderManager. parseFilter(String className, String filterPrefix, Properties props, PropertiesConfiguration config)
Filter
BuilderManager. parseFilter(String className, Element filterElement, XmlConfiguration config)
Methods in org.apache.log4j.builders with parameters of type Filter Modifier and Type Method Description protected Filter
AbstractBuilder. buildFilters(String level, Filter filter)
-
Uses of Filter in org.apache.log4j.builders.filter
Methods in org.apache.log4j.builders.filter that return Filter Modifier and Type Method Description Filter
DenyAllFilterBuilder. parseFilter(PropertiesConfiguration config)
Filter
DenyAllFilterBuilder. parseFilter(Element filterElement, XmlConfiguration config)
Filter
FilterBuilder. parseFilter(PropertiesConfiguration config)
Filter
FilterBuilder. parseFilter(Element element, XmlConfiguration config)
Filter
LevelMatchFilterBuilder. parseFilter(PropertiesConfiguration config)
Filter
LevelMatchFilterBuilder. parseFilter(Element filterElement, XmlConfiguration config)
Filter
LevelRangeFilterBuilder. parseFilter(PropertiesConfiguration config)
Filter
LevelRangeFilterBuilder. parseFilter(Element filterElement, XmlConfiguration config)
Filter
StringMatchFilterBuilder. parseFilter(PropertiesConfiguration config)
Filter
StringMatchFilterBuilder. parseFilter(Element filterElement, XmlConfiguration config)
-
Uses of Filter in org.apache.log4j.config
Methods in org.apache.log4j.config that return Filter Modifier and Type Method Description Filter
PropertiesConfiguration. parseAppenderFilters(Properties props, String filterPrefix, String appenderName)
-
Uses of Filter in org.apache.log4j.spi
Fields in org.apache.log4j.spi declared as Filter Modifier and Type Field Description Filter
Filter. next
Deprecated.As of 1.2.12, usegetNext()
andsetNext(org.apache.log4j.spi.Filter)
insteadMethods in org.apache.log4j.spi that return Filter Modifier and Type Method Description Filter
Filter. getNext()
Return the pointer to the next filter.Methods in org.apache.log4j.spi with parameters of type Filter Modifier and Type Method Description void
Filter. setNext(Filter next)
Set the next filter pointer. -
Uses of Filter in org.apache.log4j.xml
Methods in org.apache.log4j.xml that return Filter Modifier and Type Method Description Filter
XmlConfiguration. parseFilters(Element filterElement)
Used internally to parse a filter element.
-