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