com.azure.resourcemanager.netapp.models.NetworkFeatures Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-netapp Show documentation
Show all versions of azure-resourcemanager-netapp Show documentation
This package contains Microsoft Azure SDK for NetAppFiles Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Microsoft NetApp Files Azure Resource Provider specification. Package tag package-2024-03.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.netapp.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Network features
*
* Network features available to the volume, or current state of update.
*/
public final class NetworkFeatures extends ExpandableStringEnum {
/**
* Static value Basic for NetworkFeatures.
*/
public static final NetworkFeatures BASIC = fromString("Basic");
/**
* Static value Standard for NetworkFeatures.
*/
public static final NetworkFeatures STANDARD = fromString("Standard");
/**
* Static value Basic_Standard for NetworkFeatures.
*/
public static final NetworkFeatures BASIC_STANDARD = fromString("Basic_Standard");
/**
* Static value Standard_Basic for NetworkFeatures.
*/
public static final NetworkFeatures STANDARD_BASIC = fromString("Standard_Basic");
/**
* Creates a new instance of NetworkFeatures value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public NetworkFeatures() {
}
/**
* Creates or finds a NetworkFeatures from its string representation.
*
* @param name a name to look for.
* @return the corresponding NetworkFeatures.
*/
public static NetworkFeatures fromString(String name) {
return fromString(name, NetworkFeatures.class);
}
/**
* Gets known NetworkFeatures values.
*
* @return known NetworkFeatures values.
*/
public static Collection values() {
return values(NetworkFeatures.class);
}
}