edu.umd.cs.findbugs.detect
public class DeadLocalStoreProperty extends AbstractWarningProperty
Field Summary | |
---|---|
static DeadLocalStoreProperty | BASE_VALUE primitive or string |
static DeadLocalStoreProperty | CACHING_VALUE Caching value |
static DeadLocalStoreProperty | COPY_VALUE copy value |
static DeadLocalStoreProperty | DEAD_INCREMENT The dead store is an increment. |
static DeadLocalStoreProperty | DEAD_OBJECT_STORE Dead store is of a newly allocated object. |
static DeadLocalStoreProperty | DEFENSIVE_CONSTANT_OPCODE Dead store is of a defense programming constant value. |
static DeadLocalStoreProperty | EXCEPTION_HANDLER Dead store is likely to be the exception object in an exception handler. |
static DeadLocalStoreProperty | IS_PARAMETER |
static DeadLocalStoreProperty | KILLED_BY_SUBSEQUENT_STORE Store is killed by a subsequent store. |
static DeadLocalStoreProperty | LOCAL_NAME Name of the local variable. |
static DeadLocalStoreProperty | MANY_STORES many stores |
static DeadLocalStoreProperty | METHOD_RESULT |
static DeadLocalStoreProperty | NO_LOADS There are no loads of this local. |
static DeadLocalStoreProperty | PARAM_DEAD_ON_ENTRY This local is a parameter which is dead on entry to the method. |
static DeadLocalStoreProperty | SHADOWS_FIELD Variable shadows a fields with the same name |
static DeadLocalStoreProperty | SINGLE_DEAD_INCREMENT The dead store is an increment: the only one in the method. |
static DeadLocalStoreProperty | SINGLE_STORE There is only one store of this local. |
static DeadLocalStoreProperty | STORE_OF_CONSTANT |
static DeadLocalStoreProperty | STORE_OF_NULL |
static DeadLocalStoreProperty | SYNTHETIC_NAME |
static DeadLocalStoreProperty | TWO_STORES_MULTIPLE_LOADS Method contains two stores and multiple loads of this local. |