
com.microsoft.azure.eventgrid.models.MediaJobRetry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-eventgrid Show documentation
Show all versions of azure-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
/**
* 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.eventgrid.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Defines values for MediaJobRetry.
*/
public enum MediaJobRetry {
/** Issue needs to be investigated and then the job resubmitted with corrections or retried once the underlying issue has been corrected. */
DO_NOT_RETRY("DoNotRetry"),
/** Issue may be resolved after waiting for a period of time and resubmitting the same Job. */
MAY_RETRY("MayRetry");
/** The actual serialized value for a MediaJobRetry instance. */
private String value;
MediaJobRetry(String value) {
this.value = value;
}
/**
* Parses a serialized value to a MediaJobRetry instance.
*
* @param value the serialized value to parse.
* @return the parsed MediaJobRetry object, or null if unable to parse.
*/
@JsonCreator
public static MediaJobRetry fromString(String value) {
MediaJobRetry[] items = MediaJobRetry.values();
for (MediaJobRetry item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
@JsonValue
@Override
public String toString() {
return this.value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy