All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.mediaservices.models.Complexity Maven / Gradle / Ivy

Go to download

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;

/**
 * Allows you to configure the encoder settings to control the balance between speed and quality. Example: set
 * Complexity as Speed for faster encoding but less compression efficiency.
 */
public final class Complexity extends ExpandableStringEnum {
    /**
     * Static value Speed for Complexity.
     */
    public static final Complexity SPEED = fromString("Speed");

    /**
     * Static value Balanced for Complexity.
     */
    public static final Complexity BALANCED = fromString("Balanced");

    /**
     * Static value Quality for Complexity.
     */
    public static final Complexity QUALITY = fromString("Quality");

    /**
     * Creates a new instance of Complexity value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public Complexity() {
    }

    /**
     * Creates or finds a Complexity from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding Complexity.
     */
    public static Complexity fromString(String name) {
        return fromString(name, Complexity.class);
    }

    /**
     * Gets known Complexity values.
     * 
     * @return known Complexity values.
     */
    public static Collection values() {
        return values(Complexity.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy