edu.umd.cs.findbugs.props
Class PriorityAdjustment

java.lang.Object
  extended by edu.umd.cs.findbugs.props.PriorityAdjustment

public class PriorityAdjustment
extends java.lang.Object

Enum 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
static PriorityAdjustment FALSE_POSITIVE
          Warning is likely to be a false positive.
static PriorityAdjustment LOWER_PRIORITY
          Lower the priority.
static PriorityAdjustment NO_ADJUSTMENT
          No adjustment to the priority.
static PriorityAdjustment RAISE_PRIORITY
          Raise the priority.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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.


LOWER_PRIORITY

public static final PriorityAdjustment LOWER_PRIORITY
Lower the priority.


FALSE_POSITIVE

public static final PriorityAdjustment FALSE_POSITIVE
Warning is likely to be a false positive.

Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object