com.azure.resourcemanager.datalakestore.models.FirewallState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-datalakestore Show documentation
Show all versions of azure-resourcemanager-datalakestore Show documentation
This package contains Microsoft Azure SDK for DataLakeStore Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Creates an Azure Data Lake Store account management client. Package tag package-2016-11.
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.datalakestore.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/** The current state of the IP address firewall for this Data Lake Store account. */
public enum FirewallState {
/** Enum value Enabled. */
ENABLED("Enabled"),
/** Enum value Disabled. */
DISABLED("Disabled");
/** The actual serialized value for a FirewallState instance. */
private final String value;
FirewallState(String value) {
this.value = value;
}
/**
* Parses a serialized value to a FirewallState instance.
*
* @param value the serialized value to parse.
* @return the parsed FirewallState object, or null if unable to parse.
*/
@JsonCreator
public static FirewallState fromString(String value) {
if (value == null) {
return null;
}
FirewallState[] items = FirewallState.values();
for (FirewallState item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
/** {@inheritDoc} */
@JsonValue
@Override
public String toString() {
return this.value;
}
}