com.azure.resourcemanager.appplatform.models.PredefinedAcceleratorState 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 predefined accelerator.
*/
public final class PredefinedAcceleratorState extends ExpandableStringEnum {
/**
* Static value Enabled for PredefinedAcceleratorState.
*/
public static final PredefinedAcceleratorState ENABLED = fromString("Enabled");
/**
* Static value Disabled for PredefinedAcceleratorState.
*/
public static final PredefinedAcceleratorState DISABLED = fromString("Disabled");
/**
* Creates a new instance of PredefinedAcceleratorState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public PredefinedAcceleratorState() {
}
/**
* Creates or finds a PredefinedAcceleratorState from its string representation.
*
* @param name a name to look for.
* @return the corresponding PredefinedAcceleratorState.
*/
@JsonCreator
public static PredefinedAcceleratorState fromString(String name) {
return fromString(name, PredefinedAcceleratorState.class);
}
/**
* Gets known PredefinedAcceleratorState values.
*
* @return known PredefinedAcceleratorState values.
*/
public static Collection values() {
return values(PredefinedAcceleratorState.class);
}
}