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

com.azure.resourcemanager.machinelearning.models.RandomSamplingAlgorithmRule Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Machine Learning Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. These APIs allow end users to operate on Azure Machine Learning Workspace resources. Package tag package-2024-04.

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

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

/**
 * The specific type of random algorithm.
 */
public final class RandomSamplingAlgorithmRule extends ExpandableStringEnum {
    /**
     * Static value Random for RandomSamplingAlgorithmRule.
     */
    public static final RandomSamplingAlgorithmRule RANDOM = fromString("Random");

    /**
     * Static value Sobol for RandomSamplingAlgorithmRule.
     */
    public static final RandomSamplingAlgorithmRule SOBOL = fromString("Sobol");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy