com.azure.resourcemanager.dnsresolver.models.BlockResponseCode 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;
/**
* The response code for block actions.
*/
public final class BlockResponseCode extends ExpandableStringEnum {
/**
* Static value SERVFAIL for BlockResponseCode.
*/
public static final BlockResponseCode SERVFAIL = fromString("SERVFAIL");
/**
* Creates a new instance of BlockResponseCode value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public BlockResponseCode() {
}
/**
* Creates or finds a BlockResponseCode from its string representation.
*
* @param name a name to look for.
* @return the corresponding BlockResponseCode.
*/
public static BlockResponseCode fromString(String name) {
return fromString(name, BlockResponseCode.class);
}
/**
* Gets known BlockResponseCode values.
*
* @return known BlockResponseCode values.
*/
public static Collection values() {
return values(BlockResponseCode.class);
}
}