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

com.azure.resourcemanager.hybridcompute.models.LicenseEdition Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.

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.hybridcompute.models;

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

/**
 * Describes the edition of the license. The values are either Standard or Datacenter.
 */
public final class LicenseEdition extends ExpandableStringEnum {
    /**
     * Static value Standard for LicenseEdition.
     */
    public static final LicenseEdition STANDARD = fromString("Standard");

    /**
     * Static value Datacenter for LicenseEdition.
     */
    public static final LicenseEdition DATACENTER = fromString("Datacenter");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy