public static enum Vulnerability.Source extends Enum<Vulnerability.Source>
| Enum Constant and Description |
|---|
BUNDLEAUDIT
Vulnerability from Bundle Audit.
|
MIXAUDIT
Vulnerability from Mix Audit.
|
NPM
NPM Public Advisory.
|
NVD
National Vulnerability Database.
|
OSSINDEX
Sonatype OSS Index.
|
RETIREJS
RetireJS.
|
| Modifier and Type | Method and Description |
|---|---|
static Vulnerability.Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Vulnerability.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Vulnerability.Source NVD
public static final Vulnerability.Source NPM
public static final Vulnerability.Source RETIREJS
public static final Vulnerability.Source OSSINDEX
public static final Vulnerability.Source BUNDLEAUDIT
public static final Vulnerability.Source MIXAUDIT
public static Vulnerability.Source[] values()
for (Vulnerability.Source c : Vulnerability.Source.values()) System.out.println(c);
public static Vulnerability.Source 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.