public enum Confidence extends Enum<Confidence>
| Enum Constant and Description |
|---|
HIGH
High confidence evidence.
|
HIGHEST
High confidence evidence.
|
LOW
Low confidence evidence.
|
MEDIUM
Medium confidence evidence.
|
| Modifier and Type | Method and Description |
|---|---|
static Confidence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Confidence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Confidence HIGHEST
public static final Confidence HIGH
public static final Confidence MEDIUM
public static final Confidence LOW
public static Confidence[] values()
for (Confidence c : Confidence.values()) System.out.println(c);
public static Confidence valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2020 OWASP. All rights reserved.