com.azure.resourcemanager.appplatform.models.DevToolPortalFeatureState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
This package contains Microsoft Azure App Platform Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.appplatform.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* State of the plugin.
*/
public final class DevToolPortalFeatureState extends ExpandableStringEnum {
/**
* Static value Enabled for DevToolPortalFeatureState.
*/
public static final DevToolPortalFeatureState ENABLED = fromString("Enabled");
/**
* Static value Disabled for DevToolPortalFeatureState.
*/
public static final DevToolPortalFeatureState DISABLED = fromString("Disabled");
/**
* Creates a new instance of DevToolPortalFeatureState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DevToolPortalFeatureState() {
}
/**
* Creates or finds a DevToolPortalFeatureState from its string representation.
*
* @param name a name to look for.
* @return the corresponding DevToolPortalFeatureState.
*/
@JsonCreator
public static DevToolPortalFeatureState fromString(String name) {
return fromString(name, DevToolPortalFeatureState.class);
}
/**
* Gets known DevToolPortalFeatureState values.
*
* @return known DevToolPortalFeatureState values.
*/
public static Collection values() {
return values(DevToolPortalFeatureState.class);
}
}