Class NullDerefProperty
java.lang.Object
edu.umd.cs.findbugs.props.AbstractWarningProperty
edu.umd.cs.findbugs.detect.NullDerefProperty
- All Implemented Interfaces:
WarningProperty
Warning properties for null pointer dereference and redundant null comparison
warnings.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final NullDerefPropertydereference always on exception pathstatic final NullDerefPropertyRedundant null comparison is of a checked null value.static final NullDerefPropertystatic final NullDerefPropertyRedundant nullcheck created dead code.static final NullDerefPropertystatic final NullDerefPropertystatic final NullDerefPropertystatic final NullDerefPropertyRedundant null comparison is of a checked null value.static final NullDerefPropertyRedundant nullcheck of previously dereferenced value. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateNullDerefProperty(String name, PriorityAdjustment priorityAdjustment) -
Method Summary
Methods inherited from class AbstractWarningProperty
getName, getPriorityAdjustment
-
Field Details
-
CHECKED_VALUE
Redundant null comparison is of a checked null value. -
LONG_RANGE_NULL_SOURCE
Redundant null comparison is of a checked null value. -
ALWAYS_ON_EXCEPTION_PATH
dereference always on exception path -
WOULD_HAVE_BEEN_A_KABOOM
Redundant nullcheck of previously dereferenced value. -
CREATED_DEAD_CODE
Redundant nullcheck created dead code. -
DEREFS_ARE_CLONED
-
CLOSING_NULL
-
DEREFS_ARE_INLINED_FINALLY_BLOCKS
-
DEREFS_IN_CATCH_BLOCKS
-
-
Constructor Details
-
NullDerefProperty
-