Package org.zaproxy.clientapi.core
Enum Alert.Confidence
- java.lang.Object
-
- java.lang.Enum<Alert.Confidence>
-
- org.zaproxy.clientapi.core.Alert.Confidence
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Alert.Confidence>
- Enclosing class:
- Alert
public static enum Alert.Confidence extends java.lang.Enum<Alert.Confidence>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Confirmed
FalsePositive
High
Low
Medium
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Alert.Confidence
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Alert.Confidence[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FalsePositive
public static final Alert.Confidence FalsePositive
-
Low
public static final Alert.Confidence Low
-
Medium
public static final Alert.Confidence Medium
-
High
public static final Alert.Confidence High
-
Confirmed
public static final Alert.Confidence Confirmed
-
-
Method Detail
-
values
public static Alert.Confidence[] 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 (Alert.Confidence c : Alert.Confidence.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Alert.Confidence 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
-
-