Threats Class

public final class Threats
extends ExpandableStringEnum<Threats>

Threats impact of the assessment.

Field Summary

Modifier and Type Field and Description
static final Threats ACCOUNT_BREACH

accountBreach.

static final Threats DATA_EXFILTRATION

dataExfiltration.

static final Threats DATA_SPILLAGE

dataSpillage.

static final Threats DENIAL_OF_SERVICE

denialOfService.

static final Threats ELEVATION_OF_PRIVILEGE

elevationOfPrivilege.

static final Threats MALICIOUS_INSIDER

maliciousInsider.

static final Threats MISSING_COVERAGE

missingCoverage.

static final Threats THREAT_RESISTANCE

threatResistance.

Constructor Summary

Constructor Description
Threats()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of Threats value.

Method Summary

Modifier and Type Method and Description
static Threats fromString(String name)

Creates or finds a Threats from its string representation.

static Collection<Threats> values()

Gets known Threats values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ACCOUNT_BREACH

public static final Threats ACCOUNT_BREACH

accountBreach.

DATA_EXFILTRATION

public static final Threats DATA_EXFILTRATION

dataExfiltration.

DATA_SPILLAGE

public static final Threats DATA_SPILLAGE

dataSpillage.

DENIAL_OF_SERVICE

public static final Threats DENIAL_OF_SERVICE

denialOfService.

ELEVATION_OF_PRIVILEGE

public static final Threats ELEVATION_OF_PRIVILEGE

elevationOfPrivilege.

MALICIOUS_INSIDER

public static final Threats MALICIOUS_INSIDER

maliciousInsider.

MISSING_COVERAGE

public static final Threats MISSING_COVERAGE

missingCoverage.

THREAT_RESISTANCE

public static final Threats THREAT_RESISTANCE

threatResistance.

Constructor Details

Threats

@Deprecated
public Threats()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of Threats value.

Method Details

fromString

public static Threats fromString(String name)

Creates or finds a Threats from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding Threats.

values

public static Collection<Threats> values()

Gets known Threats values.

Returns:

known Threats values.

Applies to