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

com.azure.resourcemanager.devcenter.models.CatalogConnectionState Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.devcenter.models;

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

/**
 * The connection state of the catalog.
 */
public final class CatalogConnectionState extends ExpandableStringEnum {
    /**
     * Static value Connected for CatalogConnectionState.
     */
    public static final CatalogConnectionState CONNECTED = fromString("Connected");

    /**
     * Static value Disconnected for CatalogConnectionState.
     */
    public static final CatalogConnectionState DISCONNECTED = fromString("Disconnected");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy