Package org.jboss.logmanager.filters
Class InvertFilter
- java.lang.Object
-
- org.jboss.logmanager.filters.InvertFilter
-
- All Implemented Interfaces:
java.util.logging.Filter
public final class InvertFilter extends java.lang.Object implements java.util.logging.FilterAn inverting filter.
-
-
Constructor Summary
Constructors Constructor Description InvertFilter(java.util.logging.Filter target)Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisLoggable(java.util.logging.LogRecord record)Determine whether a log record passes this filter.
-
-
-
Method Detail
-
isLoggable
public boolean isLoggable(java.util.logging.LogRecord record)
Determine whether a log record passes this filter.- Specified by:
isLoggablein interfacejava.util.logging.Filter- Parameters:
record- the log record- Returns:
trueif the target filter returnsfalse,falseotherwise
-
-