Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.appservice; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue;
Defines values for IssueType.
/** * Defines values for IssueType. */
public enum IssueType {
Enum value ServiceIncident.
/** Enum value ServiceIncident. */
SERVICE_INCIDENT("ServiceIncident"),
Enum value AppDeployment.
/** Enum value AppDeployment. */
APP_DEPLOYMENT("AppDeployment"),
Enum value AppCrash.
/** Enum value AppCrash. */
APP_CRASH("AppCrash"),
Enum value RuntimeIssueDetected.
/** Enum value RuntimeIssueDetected. */
RUNTIME_ISSUE_DETECTED("RuntimeIssueDetected"),
Enum value AseDeployment.
/** Enum value AseDeployment. */
ASE_DEPLOYMENT("AseDeployment"),
Enum value UserIssue.
/** Enum value UserIssue. */
USER_ISSUE("UserIssue"),
Enum value PlatformIssue.
/** Enum value PlatformIssue. */
PLATFORM_ISSUE("PlatformIssue"),
Enum value Other.
/** Enum value Other. */
OTHER("Other");
The actual serialized value for a IssueType instance.
/** The actual serialized value for a IssueType instance. */
private String value; IssueType(String value) { this.value = value; }
Parses a serialized value to a IssueType instance.
Params:
  • value – the serialized value to parse.
Returns:the parsed IssueType object, or null if unable to parse.
/** * Parses a serialized value to a IssueType instance. * * @param value the serialized value to parse. * @return the parsed IssueType object, or null if unable to parse. */
@JsonCreator public static IssueType fromString(String value) { IssueType[] items = IssueType.values(); for (IssueType item : items) { if (item.toString().equalsIgnoreCase(value)) { return item; } } return null; } @JsonValue @Override public String toString() { return this.value; } }