Package edu.umd.cs.findbugs.props
Class PriorityAdjustment
- java.lang.Object
-
- edu.umd.cs.findbugs.props.PriorityAdjustment
-
public class PriorityAdjustment extends java.lang.ObjectEnum representing how a particular warning property is expected to affect its likelihood of being serious, benign, or a false positive.- Author:
- David Hovemeyer
-
-
Field Summary
Fields Modifier and Type Field Description static PriorityAdjustmentA_LITTLE_BIT_HIGHER_PRIORITYRaise the priority a littlestatic PriorityAdjustmentA_LITTLE_BIT_LOWER_PRIORITYLower the priority a littlestatic PriorityAdjustmentAT_MOST_LOWPriority is at most low.static PriorityAdjustmentAT_MOST_MEDIUMPriority is at most medium.static PriorityAdjustmentFALSE_POSITIVEWarning is likely to be a false positive.static PriorityAdjustmentLOWER_PRIORITYLower the priority.static PriorityAdjustmentLOWER_PRIORITY_TO_AT_MOST_NORMALlower the priority.static PriorityAdjustmentNO_ADJUSTMENTNo adjustment to the priority.static PriorityAdjustmentPEGGED_HIGHPegged highstatic PriorityAdjustmentRAISE_PRIORITYRaise the priority.static PriorityAdjustmentRAISE_PRIORITY_TO_AT_LEAST_NORMALRaise the priority.static PriorityAdjustmentRAISE_PRIORITY_TO_HIGHRaise the priority.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
NO_ADJUSTMENT
public static final PriorityAdjustment NO_ADJUSTMENT
No adjustment to the priority.
-
RAISE_PRIORITY
public static final PriorityAdjustment RAISE_PRIORITY
Raise the priority.
-
RAISE_PRIORITY_TO_AT_LEAST_NORMAL
public static final PriorityAdjustment RAISE_PRIORITY_TO_AT_LEAST_NORMAL
Raise the priority.
-
LOWER_PRIORITY_TO_AT_MOST_NORMAL
public static final PriorityAdjustment LOWER_PRIORITY_TO_AT_MOST_NORMAL
lower the priority.
-
RAISE_PRIORITY_TO_HIGH
public static final PriorityAdjustment RAISE_PRIORITY_TO_HIGH
Raise the priority.
-
AT_MOST_LOW
public static final PriorityAdjustment AT_MOST_LOW
Priority is at most low.
-
AT_MOST_MEDIUM
public static final PriorityAdjustment AT_MOST_MEDIUM
Priority is at most medium.
-
PEGGED_HIGH
public static final PriorityAdjustment PEGGED_HIGH
Pegged high
-
LOWER_PRIORITY
public static final PriorityAdjustment LOWER_PRIORITY
Lower the priority.
-
A_LITTLE_BIT_LOWER_PRIORITY
public static final PriorityAdjustment A_LITTLE_BIT_LOWER_PRIORITY
Lower the priority a little
-
A_LITTLE_BIT_HIGHER_PRIORITY
public static final PriorityAdjustment A_LITTLE_BIT_HIGHER_PRIORITY
Raise the priority a little
-
FALSE_POSITIVE
public static final PriorityAdjustment FALSE_POSITIVE
Warning is likely to be a false positive.
-
-