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

com.azure.resourcemanager.databoxedge.models.DownloadPhase 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.databoxedge.models;

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

/**
 * The download phase.
 */
public final class DownloadPhase extends ExpandableStringEnum {
    /**
     * Static value Unknown for DownloadPhase.
     */
    public static final DownloadPhase UNKNOWN = fromString("Unknown");

    /**
     * Static value Initializing for DownloadPhase.
     */
    public static final DownloadPhase INITIALIZING = fromString("Initializing");

    /**
     * Static value Downloading for DownloadPhase.
     */
    public static final DownloadPhase DOWNLOADING = fromString("Downloading");

    /**
     * Static value Verifying for DownloadPhase.
     */
    public static final DownloadPhase VERIFYING = fromString("Verifying");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy