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

com.azure.resourcemanager.orbital.models.ReleaseMode 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.orbital.models;

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

/**
 * Release Status of a ground station.
 */
public final class ReleaseMode extends ExpandableStringEnum {
    /**
     * Static value Preview for ReleaseMode.
     */
    public static final ReleaseMode PREVIEW = fromString("Preview");

    /**
     * Static value GA for ReleaseMode.
     */
    public static final ReleaseMode GA = fromString("GA");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy