com.azure.communication.callautomation.models.MediaStreamingTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-communication-callautomation Show documentation
Show all versions of azure-communication-callautomation Show documentation
This package contains clients and data structures used to make call with Azure Communication Call Automation Service.
For this release, see notes - https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/communication/azure-communication-callautomation/README.md and https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/communication/azure-communication-callautomation/CHANGELOG.md.
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.communication.callautomation.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/** Defines values for MediaStreamingTransportType. */
public final class MediaStreamingTransport extends ExpandableStringEnum {
/** Static value websocket for MediaStreamingTransportType. */
public static final MediaStreamingTransport WEBSOCKET = fromString("websocket");
/**
* Creates an instance of {@link MediaStreamingTransport} with no string value.
*
* @deprecated Please use {@link #fromString(String)} to create an instance of MediaStreamingTransport.
*/
@Deprecated
public MediaStreamingTransport() {
}
/**
* Creates or finds a MediaStreamingTransportType from its string representation.
*
* @param name a name to look for.
* @return the corresponding MediaStreamingTransportType.
*/
public static MediaStreamingTransport fromString(String name) {
return fromString(name, MediaStreamingTransport.class);
}
/**
* Get the collection of MediaStreamingTransportType values.
* @return known MediaStreamingTransportType values.
*/
public static Collection values() {
return values(MediaStreamingTransport.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy