com.azure.resourcemanager.mediaservices.models.Priority Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mediaservices Show documentation
Show all versions of azure-resourcemanager-mediaservices Show documentation
This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mediaservices.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses
* for processing TransformOutputs. The default priority is Normal.
*/
public final class Priority extends ExpandableStringEnum {
/**
* Static value Low for Priority.
*/
public static final Priority LOW = fromString("Low");
/**
* Static value Normal for Priority.
*/
public static final Priority NORMAL = fromString("Normal");
/**
* Static value High for Priority.
*/
public static final Priority HIGH = fromString("High");
/**
* Creates a new instance of Priority value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public Priority() {
}
/**
* Creates or finds a Priority from its string representation.
*
* @param name a name to look for.
* @return the corresponding Priority.
*/
public static Priority fromString(String name) {
return fromString(name, Priority.class);
}
/**
* Gets known Priority values.
*
* @return known Priority values.
*/
public static Collection values() {
return values(Priority.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy