com.azure.resourcemanager.machinelearning.models.UsageUnit 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;
/**
* An enum describing the unit of usage measurement.
*/
public final class UsageUnit extends ExpandableStringEnum {
/**
* Static value Count for UsageUnit.
*/
public static final UsageUnit COUNT = fromString("Count");
/**
* Creates a new instance of UsageUnit value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public UsageUnit() {
}
/**
* Creates or finds a UsageUnit from its string representation.
*
* @param name a name to look for.
* @return the corresponding UsageUnit.
*/
public static UsageUnit fromString(String name) {
return fromString(name, UsageUnit.class);
}
/**
* Gets known UsageUnit values.
*
* @return known UsageUnit values.
*/
public static Collection values() {
return values(UsageUnit.class);
}
}