com.azure.resourcemanager.machinelearning.models.UseStl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-machinelearning Show documentation
Show all versions of azure-resourcemanager-machinelearning Show documentation
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;
/**
* Configure STL Decomposition of the time-series target column.
*/
public final class UseStl extends ExpandableStringEnum {
/**
* Static value None for UseStl.
*/
public static final UseStl NONE = fromString("None");
/**
* Static value Season for UseStl.
*/
public static final UseStl SEASON = fromString("Season");
/**
* Static value SeasonTrend for UseStl.
*/
public static final UseStl SEASON_TREND = fromString("SeasonTrend");
/**
* Creates a new instance of UseStl value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public UseStl() {
}
/**
* Creates or finds a UseStl from its string representation.
*
* @param name a name to look for.
* @return the corresponding UseStl.
*/
public static UseStl fromString(String name) {
return fromString(name, UseStl.class);
}
/**
* Gets known UseStl values.
*
* @return known UseStl values.
*/
public static Collection values() {
return values(UseStl.class);
}
}