public enum InsightStatus extends Enum<InsightStatus>
| Enum Constant and Description |
|---|
CRITICAL
Enum value Critical.
|
INFO
Enum value Info.
|
NONE
Enum value None.
|
SUCCESS
Enum value Success.
|
WARNING
Enum value Warning.
|
| Modifier and Type | Method and Description |
|---|---|
static InsightStatus |
fromString(String value)
Parses a serialized value to a InsightStatus instance.
|
String |
toString() |
static InsightStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InsightStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InsightStatus CRITICAL
public static final InsightStatus WARNING
public static final InsightStatus INFO
public static final InsightStatus SUCCESS
public static final InsightStatus NONE
public static InsightStatus[] values()
public static InsightStatus 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 nullpublic static InsightStatus fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<InsightStatus>Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.