public enum IssueType extends Enum<IssueType>
Enum Constant and Description |
---|
APP_CRASH
Enum value AppCrash.
|
APP_DEPLOYMENT
Enum value AppDeployment.
|
ASE_DEPLOYMENT
Enum value AseDeployment.
|
OTHER
Enum value Other.
|
PLATFORM_ISSUE
Enum value PlatformIssue.
|
RUNTIME_ISSUE_DETECTED
Enum value RuntimeIssueDetected.
|
SERVICE_INCIDENT
Enum value ServiceIncident.
|
USER_ISSUE
Enum value UserIssue.
|
Modifier and Type | Method and Description |
---|---|
static IssueType |
fromString(String value)
Parses a serialized value to a IssueType instance.
|
String |
toString() |
static IssueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueType SERVICE_INCIDENT
public static final IssueType APP_DEPLOYMENT
public static final IssueType APP_CRASH
public static final IssueType RUNTIME_ISSUE_DETECTED
public static final IssueType ASE_DEPLOYMENT
public static final IssueType USER_ISSUE
public static final IssueType PLATFORM_ISSUE
public static final IssueType OTHER
public static IssueType[] values()
for (IssueType c : IssueType.values()) System.out.println(c);
public static IssueType 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 IssueType fromString(String value)
value
- the serialized value to parse.Copyright © 2019. All rights reserved.