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

com.azure.resourcemanager.servicefabricmanagedclusters.models.MoveCost Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Service Fabric Managed Clusters Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Service Fabric Managed Clusters Management Client. Package tag package-2024-04.

There is a newer version: 1.0.0
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.servicefabricmanagedclusters.models;

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

/**
 * Specifies the move cost for the service.
 */
public final class MoveCost extends ExpandableStringEnum {
    /**
     * Static value Zero for MoveCost.
     */
    public static final MoveCost ZERO = fromString("Zero");

    /**
     * Static value Low for MoveCost.
     */
    public static final MoveCost LOW = fromString("Low");

    /**
     * Static value Medium for MoveCost.
     */
    public static final MoveCost MEDIUM = fromString("Medium");

    /**
     * Static value High for MoveCost.
     */
    public static final MoveCost HIGH = fromString("High");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy