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

com.azure.resourcemanager.hybridcompute.models.EsuEligibility 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.

There is a newer version: 1.1.0-beta.1
Show 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 com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/**
 * The ESU eligibility.
 */
public final class EsuEligibility extends ExpandableStringEnum {
    /**
     * Static value Eligible for EsuEligibility.
     */
    public static final EsuEligibility ELIGIBLE = fromString("Eligible");

    /**
     * Static value Ineligible for EsuEligibility.
     */
    public static final EsuEligibility INELIGIBLE = fromString("Ineligible");

    /**
     * Static value Unknown for EsuEligibility.
     */
    public static final EsuEligibility UNKNOWN = fromString("Unknown");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy