SeverityLevel Class

public final class SeverityLevel
extends ExpandableStringEnum<SeverityLevel>

A value that indicates the urgency of the case, which in turn determines the response time according to the service level agreement of the technical support plan you have with Azure. Note: 'Highest critical impact', also known as the 'Emergency - Severe impact' level in the Azure portal is reserved only for our Premium customers.

Field Summary

Modifier and Type Field and Description
static final SeverityLevel CRITICAL

Static value critical for SeverityLevel.

static final SeverityLevel HIGHESTCRITICALIMPACT

Static value highestcriticalimpact for SeverityLevel.

static final SeverityLevel MINIMAL

Static value minimal for SeverityLevel.

static final SeverityLevel MODERATE

Static value moderate for SeverityLevel.

Constructor Summary

Constructor Description
SeverityLevel()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SeverityLevel value.

Method Summary

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

Creates or finds a SeverityLevel from its string representation.

static Collection<SeverityLevel> values()

Gets known SeverityLevel values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CRITICAL

public static final SeverityLevel CRITICAL

Static value critical for SeverityLevel.

HIGHESTCRITICALIMPACT

public static final SeverityLevel HIGHESTCRITICALIMPACT

Static value highestcriticalimpact for SeverityLevel.

MINIMAL

public static final SeverityLevel MINIMAL

Static value minimal for SeverityLevel.

MODERATE

public static final SeverityLevel MODERATE

Static value moderate for SeverityLevel.

Constructor Details

SeverityLevel

@Deprecated
public SeverityLevel()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SeverityLevel value.

Method Details

fromString

public static SeverityLevel fromString(String name)

Creates or finds a SeverityLevel from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding SeverityLevel.

values

public static Collection<SeverityLevel> values()

Gets known SeverityLevel values.

Returns:

known SeverityLevel values.

Applies to