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

com.azure.resourcemanager.webpubsub.models.ServiceKind Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for WebPubSub Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. REST API for Azure WebPubSub Service. Package tag package-2024-03-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.webpubsub.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * The kind of the service.
 */
public final class ServiceKind extends ExpandableStringEnum {
    /**
     * Static value WebPubSub for ServiceKind.
     */
    public static final ServiceKind WEB_PUB_SUB = fromString("WebPubSub");

    /**
     * Static value SocketIO for ServiceKind.
     */
    public static final ServiceKind SOCKET_IO = fromString("SocketIO");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy