Uses of Interface
org.apache.log4j.rule.Rule
-
Packages that use Rule Package Description org.apache.log4j.filter org.apache.log4j.receivers.varia org.apache.log4j.receivers.xml org.apache.log4j.rule -
-
Uses of Rule in org.apache.log4j.filter
Fields in org.apache.log4j.filter declared as Rule Modifier and Type Field Description (package private) RuleExpressionFilter. expressionRuleEvaluated rule.(package private) RuleLocationInfoFilter. expressionRuleCompiled expression. -
Uses of Rule in org.apache.log4j.receivers.varia
Fields in org.apache.log4j.receivers.varia declared as Rule Modifier and Type Field Description private RuleLogFilePatternReceiver. expressionRule -
Uses of Rule in org.apache.log4j.receivers.xml
Fields in org.apache.log4j.receivers.xml declared as Rule Modifier and Type Field Description private RuleLogFileXMLReceiver. expressionRule -
Uses of Rule in org.apache.log4j.rule
Classes in org.apache.log4j.rule that implement Rule Modifier and Type Class Description classAbstractRuleAn abstract Rule class that provides the PropertyChange support plumbing.classAndRuleA Rule class implementing a logical 'and'.classColorRuleA Rule class which also holds a color.classEqualsRuleA Rule class which returns the result of performing equals against two strings.classExistsRuleA Rule class implementing a not null (and not empty string) check.classExpressionRuleA Rule class supporting both infix and postfix expressions, accepting any rule which is supported by theRuleFactory.classInequalityRuleA Rule class implementing inequality evaluation.classLevelEqualsRuleA Rule class implementing equals against two levels.private static classLevelInequalityRule.GreaterThanEqualsRuleRule returning true if event level greater than or equal to specified level.private static classLevelInequalityRule.GreaterThanRuleRule returning true if event level greater than specified level.private static classLevelInequalityRule.LessThanEqualsRuleRule returning true if event level less than or equal to specified level.private static classLevelInequalityRule.LessThanRuleRule returning true if event level less than specified level.classLikeRuleA Rule class supporting java.util.regex regular expression syntax.classNotEqualsRuleA Rule class implementing not equals against two strings.classNotLevelEqualsRuleA Rule class implementing not equals against two levels.classNotRuleA Rule class implementing logical not.classOrRuleA Rule class implementing logical or.classPartialTextMatchRuleA Rule class implementing case-insensitive partial-text matches against two strings.classTimestampEqualsRuleA Rule class implementing equality evaluation for timestamps.classTimestampInequalityRuleA Rule class implementing inequality evaluation for timestamps.Fields in org.apache.log4j.rule declared as Rule Modifier and Type Field Description private RuleAndRule. firstRuleFirst rule.private RuleColorRule. ruleWrapped rule.private RuleExpressionRule. ruleRule.private RuleNotRule. ruleEnclosed rule.private RuleOrRule. rule1rule 1.private RuleOrRule. rule2Rule 2.private RuleAndRule. secondRuleSecond rule.Methods in org.apache.log4j.rule that return Rule Modifier and Type Method Description RuleExpressionRule.PostFixExpressionCompiler. compileExpression(java.lang.String expression)Compile expression.static RuleAndRule. getRule(java.util.Stack stack)Create rule from top two elements of stack.static RuleAndRule. getRule(Rule firstParam, Rule secondParam)Get rule.RuleColorRule. getRule()Get rule.static RuleEqualsRule. getRule(java.lang.String p1, java.lang.String p2)Create new instance.static RuleEqualsRule. getRule(java.util.Stack stack)Create new instance from top two elements of stack.static RuleExistsRule. getRule(java.lang.String field)Get an instance of ExistsRule.static RuleExistsRule. getRule(java.util.Stack stack)Create an instance of ExistsRule using the top name on the stack.static RuleExpressionRule. getRule(java.lang.String expression)Get rule.static RuleExpressionRule. getRule(java.lang.String expression, boolean isPostFix)Get rule.static RuleInequalityRule. getRule(java.lang.String inequalitySymbol, java.lang.String field, java.lang.String value)Create new instance from top two elements on stack.static RuleInequalityRule. getRule(java.lang.String inequalitySymbol, java.util.Stack stack)Create new instance from top two elements on stack.static RuleLevelEqualsRule. getRule(java.lang.String value)Create new rule.static RuleLevelInequalityRule. getRule(java.lang.String inequalitySymbol, java.lang.String value)Create new rule.static RuleLikeRule. getRule(java.lang.String field, java.lang.String pattern)Create new instance.static RuleLikeRule. getRule(java.util.Stack stack)Create new instance from top two elements of stack.static RuleNotEqualsRule. getRule(java.lang.String field, java.lang.String value)Get new instance.static RuleNotEqualsRule. getRule(java.util.Stack stack)Get new instance from top two elements of stack.static RuleNotLevelEqualsRule. getRule(java.lang.String value)Create new rule.static RuleNotRule. getRule(java.util.Stack stack)Create new instance from top element of stack.static RuleNotRule. getRule(Rule rule)Create new instance.static RuleOrRule. getRule(java.util.Stack stack)Create new instance from top two elements of stack.static RuleOrRule. getRule(Rule firstParam, Rule secondParam)Create new instance.static RulePartialTextMatchRule. getRule(java.lang.String field, java.lang.String value)Create new instance.static RulePartialTextMatchRule. getRule(java.util.Stack stack)Create new instance from top two elements of stack.RuleRuleFactory. getRule(java.lang.String symbol, java.util.Stack stack)Create rule from applying operator to stack.static RuleTimestampEqualsRule. getRule(java.lang.String value)Create new instance.static RuleTimestampInequalityRule. getRule(java.lang.String inequalitySymbol, java.lang.String value)Create new instance.Methods in org.apache.log4j.rule with parameters of type Rule Modifier and Type Method Description static RuleAndRule. getRule(Rule firstParam, Rule secondParam)Get rule.static RuleNotRule. getRule(Rule rule)Create new instance.static RuleOrRule. getRule(Rule firstParam, Rule secondParam)Create new instance.Constructors in org.apache.log4j.rule with parameters of type Rule Constructor Description AndRule(Rule first, Rule second)Create new instance.ColorRule(java.lang.String expression, Rule rule, java.awt.Color backgroundColor, java.awt.Color foregroundColor)Create new instance.ExpressionRule(Rule r)Create new instance.NotRule(Rule rule)Create new instance.OrRule(Rule firstParam, Rule secondParam)Create new instance.
-