A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
AbstractFilterDecorator — Class in package com.daveoncode.logging.filters
The base abstract class of all concrete filters.
AbstractFilterDecorator(target:com.daveoncode.logging.filters:IFilter, value) — Constructor in class com.daveoncode.logging.filters.AbstractFilterDecorator
Constructor function of AbstractFilterDecorator class.
Since this class is abstract this constructor MUST be called only by subclasses of AbstractFilterDecorator (concrete filters decorators)
ALL_VALUES — Constant static property in class com.daveoncode.logging.filters.Filter
A wildcard which means "all values are ok" (the filter will returns true)
apply(record:com.daveoncode.logging:LogRecord) — Method in class com.daveoncode.logging.filters.AbstractFilterDecorator
Basic implementation of IFilter interface the value returned is always true and only apply() methods implemented by subclasses of AbstractFilter have real buisiness logic implementation
apply(record:com.daveoncode.logging:LogRecord) — Method in class com.daveoncode.logging.filters.CategoryFilter
Check if LogRecord's category property is equal to the passed "value" argument
apply(record:com.daveoncode.logging:LogRecord) — Method in class com.daveoncode.logging.filters.DateFilter
Check if LogRecord's date property is equal to the passed "value" argument
apply(record:com.daveoncode.logging:LogRecord) — Method in class com.daveoncode.logging.filters.Filter
Basic implementation of IFilter interface, the value returned is always true and only apply() methods implemented by subclasses of AbstractFilter have real buisiness logic implementation
apply(record:com.daveoncode.logging:LogRecord) — Method in interface com.daveoncode.logging.filters.IFilter
apply(record:com.daveoncode.logging:LogRecord) — Method in class com.daveoncode.logging.filters.LevelFilter
Check if LogRecord's level property is equal to the passed "value" argument
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z