com.azure.resourcemanager.dnsresolver.models.IpAllocationMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-dnsresolver Show documentation
Show all versions of azure-resourcemanager-dnsresolver Show documentation
This package contains Microsoft Azure SDK for DnsResolver Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The DNS Resolver Management Client. Package tag package-2022-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dnsresolver.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Private IP address allocation method.
*/
public final class IpAllocationMethod extends ExpandableStringEnum {
/**
* Static value Static for IpAllocationMethod.
*/
public static final IpAllocationMethod STATIC = fromString("Static");
/**
* Static value Dynamic for IpAllocationMethod.
*/
public static final IpAllocationMethod DYNAMIC = fromString("Dynamic");
/**
* Creates a new instance of IpAllocationMethod value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public IpAllocationMethod() {
}
/**
* Creates or finds a IpAllocationMethod from its string representation.
*
* @param name a name to look for.
* @return the corresponding IpAllocationMethod.
*/
public static IpAllocationMethod fromString(String name) {
return fromString(name, IpAllocationMethod.class);
}
/**
* Gets known IpAllocationMethod values.
*
* @return known IpAllocationMethod values.
*/
public static Collection values() {
return values(IpAllocationMethod.class);
}
}