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

com.azure.resourcemanager.machinelearning.models.FeatureLags 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;

/**
 * Flag for generating lags for the numeric features.
 */
public final class FeatureLags extends ExpandableStringEnum {
    /**
     * Static value None for FeatureLags.
     */
    public static final FeatureLags NONE = fromString("None");

    /**
     * Static value Auto for FeatureLags.
     */
    public static final FeatureLags AUTO = fromString("Auto");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy