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

com.azure.messaging.eventgrid.systemevents.AcsMessageChannelKind Maven / Gradle / Ivy

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.messaging.eventgrid.systemevents;

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

/**
 * The received message channel Kind.
 */
public final class AcsMessageChannelKind extends ExpandableStringEnum {
    /**
     * Updated message channel type is Whatsapp.
     */
    public static final AcsMessageChannelKind WHATSAPP = fromString("whatsapp");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy