Package org.apache.log4j.rule


package org.apache.log4j.rule
  • Class
    Description
    An abstract Rule class that provides the PropertyChange support plumbing.
    A Rule class implementing a logical 'and'.
    A Rule class which also holds a color.
    A Rule class which returns the result of performing equals against two strings.
    A Rule class implementing a not null (and not empty string) check.
    A Rule class supporting both infix and postfix expressions, accepting any rule which is supported by the RuleFactory.
    Evaluate a boolean postfix expression.
    A Rule class implementing inequality evaluation.
    A helper class which converts infix expressions to postfix expressions Currently grouping is supported, as well as all of the Rules supported by RuleFactory Supports grouping via parens, mult-word operands using single or double quotes, and these operators: ! NOT operator != NOT EQUALS operator == EQUALS operator ~= CASE-INSENSITIVE equals operator || OR operator && AND operator like REGEXP operator exists NOT NULL operator &lt LESS THAN operator &gt GREATER THAN operator &lt= LESS THAN EQUALS operator &gt= GREATER THAN EQUALS operator
     
    A Rule class implementing equals against two levels.
    A Rule class implementing inequality evaluation for Levels (log4j and util.logging) using the toInt method.
    Rule returning true if event level greater than or equal to specified level.
    Rule returning true if event level greater than specified level.
    Rule returning true if event level less than or equal to specified level.
    Rule returning true if event level less than specified level.
    A Rule class supporting java.util.regex regular expression syntax.
    A Rule class implementing not equals against two strings.
    A Rule class implementing not equals against two levels.
    A Rule class implementing logical not.
    A Rule class implementing logical or.
    A Rule class implementing case-insensitive partial-text matches against two strings.
    A Rule evaluates to true of false given a LoggingEvent object, and can notify listeners when the underlying implementation of this Rule has it's criteria changed by using the standard PropertyChangeListener infrastructure.
    A Factory class which, given a string representation of the rule, and a context stack, will return a Rule ready for evaluation against events.
    A Rule class implementing equality evaluation for timestamps.
    A Rule class implementing inequality evaluation for timestamps.