Package edu.umd.cs.findbugs.detect
Enum FindNoSideEffectMethods.MethodSideEffectStatus
- java.lang.Object
-
- java.lang.Enum<FindNoSideEffectMethods.MethodSideEffectStatus>
-
- edu.umd.cs.findbugs.detect.FindNoSideEffectMethods.MethodSideEffectStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FindNoSideEffectMethods.MethodSideEffectStatus>
- Enclosing class:
- FindNoSideEffectMethods
public static enum FindNoSideEffectMethods.MethodSideEffectStatus extends java.lang.Enum<FindNoSideEffectMethods.MethodSideEffectStatus>
Public status of the method in NSE database TODO: implement CHECK
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FindNoSideEffectMethods.MethodSideEffectStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FindNoSideEffectMethods.MethodSideEffectStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NSE
public static final FindNoSideEffectMethods.MethodSideEffectStatus NSE
-
NSE_EX
public static final FindNoSideEffectMethods.MethodSideEffectStatus NSE_EX
-
CHECK
public static final FindNoSideEffectMethods.MethodSideEffectStatus CHECK
-
USELESS
public static final FindNoSideEffectMethods.MethodSideEffectStatus USELESS
-
SE_CLINIT
public static final FindNoSideEffectMethods.MethodSideEffectStatus SE_CLINIT
-
OBJ
public static final FindNoSideEffectMethods.MethodSideEffectStatus OBJ
-
SE
public static final FindNoSideEffectMethods.MethodSideEffectStatus SE
-
-
Method Detail
-
values
public static FindNoSideEffectMethods.MethodSideEffectStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FindNoSideEffectMethods.MethodSideEffectStatus c : FindNoSideEffectMethods.MethodSideEffectStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FindNoSideEffectMethods.MethodSideEffectStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-