com.azure.resourcemanager.mediaservices.models.ChannelMapping 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;
/**
* Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel
* audio tracks.
*/
public final class ChannelMapping extends ExpandableStringEnum {
/**
* Static value FrontLeft for ChannelMapping.
*/
public static final ChannelMapping FRONT_LEFT = fromString("FrontLeft");
/**
* Static value FrontRight for ChannelMapping.
*/
public static final ChannelMapping FRONT_RIGHT = fromString("FrontRight");
/**
* Static value Center for ChannelMapping.
*/
public static final ChannelMapping CENTER = fromString("Center");
/**
* Static value LowFrequencyEffects for ChannelMapping.
*/
public static final ChannelMapping LOW_FREQUENCY_EFFECTS = fromString("LowFrequencyEffects");
/**
* Static value BackLeft for ChannelMapping.
*/
public static final ChannelMapping BACK_LEFT = fromString("BackLeft");
/**
* Static value BackRight for ChannelMapping.
*/
public static final ChannelMapping BACK_RIGHT = fromString("BackRight");
/**
* Static value StereoLeft for ChannelMapping.
*/
public static final ChannelMapping STEREO_LEFT = fromString("StereoLeft");
/**
* Static value StereoRight for ChannelMapping.
*/
public static final ChannelMapping STEREO_RIGHT = fromString("StereoRight");
/**
* Creates a new instance of ChannelMapping value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ChannelMapping() {
}
/**
* Creates or finds a ChannelMapping from its string representation.
*
* @param name a name to look for.
* @return the corresponding ChannelMapping.
*/
public static ChannelMapping fromString(String name) {
return fromString(name, ChannelMapping.class);
}
/**
* Gets known ChannelMapping values.
*
* @return known ChannelMapping values.
*/
public static Collection values() {
return values(ChannelMapping.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy