com.azure.resourcemanager.databoxedge.models.NetworkGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-databoxedge Show documentation
Show all versions of azure-resourcemanager-databoxedge Show documentation
This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.databoxedge.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The network group.
*/
public final class NetworkGroup extends ExpandableStringEnum {
/**
* Static value None for NetworkGroup.
*/
public static final NetworkGroup NONE = fromString("None");
/**
* Static value NonRDMA for NetworkGroup.
*/
public static final NetworkGroup NON_RDMA = fromString("NonRDMA");
/**
* Static value RDMA for NetworkGroup.
*/
public static final NetworkGroup RDMA = fromString("RDMA");
/**
* Creates a new instance of NetworkGroup value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public NetworkGroup() {
}
/**
* Creates or finds a NetworkGroup from its string representation.
*
* @param name a name to look for.
* @return the corresponding NetworkGroup.
*/
public static NetworkGroup fromString(String name) {
return fromString(name, NetworkGroup.class);
}
/**
* Gets known NetworkGroup values.
*
* @return known NetworkGroup values.
*/
public static Collection values() {
return values(NetworkGroup.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy