com.azure.communication.callautomation.models.RecordingState 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.
package com.azure.communication.callautomation.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/** Defines values for RecordingStateInternal. */
public final class RecordingState extends ExpandableStringEnum {
/** Static value active for RecordingStateInternal. */
public static final RecordingState ACTIVE = fromString("active");
/** Static value inactive for RecordingStateInternal. */
public static final RecordingState INACTIVE = fromString("inactive");
/**
* Creates an instance of {@link RecordingState} with no string value.
*
* @deprecated Please use {@link #fromString(String)} to create an instance of RecordingState.
*/
@Deprecated
public RecordingState() {
}
/**
* Creates or finds a RecordingStateInternal from its string representation.
*
* @param name a name to look for.
* @return the corresponding RecordingStateInternal.
*/
public static RecordingState fromString(String name) {
return fromString(name, RecordingState.class);
}
/**
* Get the collection of RecordingStateInternal values.
* @return known RecordingStateInternal values.
*/
public static Collection values() {
return values(RecordingState.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy