| Package | com.daveoncode.logging.filters |
| Class | public class Filter |
| Implements | IFilter |
See also
| Method | Defined by | ||
|---|---|---|---|
|
Filter()
Constructor function of Filter class
| 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
| Filter | ||
| Constant | Defined by | ||
|---|---|---|---|
| ALL_VALUES : String = "*" [static]
A wildcard which means "all values are ok" (the filter will returns true)
| Filter | ||
| Filter | () | constructor |
public function Filter()Constructor function of Filter class
| apply | () | method |
public function apply(record:LogRecord):BooleanBasic implementation of IFilter interface, the value returned is always true and only apply() methods implemented by subclasses of AbstractFilter have real buisiness logic implementation
Parametersrecord:LogRecord — The object to filter
|
Boolean — Boolean Always true
|
| ALL_VALUES | constant |
public static const ALL_VALUES:String = "*"A wildcard which means "all values are ok" (the filter will returns true)