Uses of Class
adams.flow.standalone.logevent.AbstractLogRecordFilter
-
Packages that use AbstractLogRecordFilter Package Description adams.flow.standalone adams.flow.standalone.logevent -
-
Uses of AbstractLogRecordFilter in adams.flow.standalone
Fields in adams.flow.standalone declared as AbstractLogRecordFilter Modifier and Type Field Description protected AbstractLogRecordFilter
LogEvent. m_Filter
the log record filter.Methods in adams.flow.standalone that return AbstractLogRecordFilter Modifier and Type Method Description AbstractLogRecordFilter
LogEvent. getFilter()
Returns the record filter to use.Methods in adams.flow.standalone with parameters of type AbstractLogRecordFilter Modifier and Type Method Description void
LogEvent. setFilter(AbstractLogRecordFilter value)
Sets the record filter to use. -
Uses of AbstractLogRecordFilter in adams.flow.standalone.logevent
Subclasses of AbstractLogRecordFilter in adams.flow.standalone.logevent Modifier and Type Class Description class
AbstractMultiFilter
Inverts the filtering result of the base filter.class
AcceptAllFilter
Dummy filter that accepts all log records.class
AndFilter
Combines the filter results using a boolean AND.class
LevelFilter
Filters records based on their logging level, i.e., if the fall in the specified min/max (inclusive).class
NameFilter
Filters records based on regular expression applied to logger name.class
NotFilter
Inverts the filtering result of the base filter.class
OrFilter
Combines the filter results using a boolean OR.class
TypeFilter
Filters records based on their output type (INFO, DEBUG, ERROR).Fields in adams.flow.standalone.logevent declared as AbstractLogRecordFilter Modifier and Type Field Description protected AbstractLogRecordFilter
NotFilter. m_Filter
the base filter to invert.protected AbstractLogRecordFilter[]
AbstractMultiFilter. m_Filters
the base filters.Methods in adams.flow.standalone.logevent that return AbstractLogRecordFilter Modifier and Type Method Description AbstractLogRecordFilter
NotFilter. getFilter()
Returns the filter to invert.AbstractLogRecordFilter[]
AbstractMultiFilter. getFilters()
Returns the filters in use.Methods in adams.flow.standalone.logevent with parameters of type AbstractLogRecordFilter Modifier and Type Method Description void
NotFilter. setFilter(AbstractLogRecordFilter value)
Sets the filter to invert.void
AbstractMultiFilter. setFilters(AbstractLogRecordFilter[] value)
Sets the filters to use.
-