com.azure.resourcemanager.databoxedge.models.ShareStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-databoxedge Show documentation
Show all versions of azure-resourcemanager-databoxedge Show documentation
This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.databoxedge.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Current status of the share.
*/
public final class ShareStatus extends ExpandableStringEnum {
/**
* Static value Offline for ShareStatus.
*/
public static final ShareStatus OFFLINE = fromString("Offline");
/**
* Static value Unknown for ShareStatus.
*/
public static final ShareStatus UNKNOWN = fromString("Unknown");
/**
* Static value OK for ShareStatus.
*/
public static final ShareStatus OK = fromString("OK");
/**
* Static value Updating for ShareStatus.
*/
public static final ShareStatus UPDATING = fromString("Updating");
/**
* Static value NeedsAttention for ShareStatus.
*/
public static final ShareStatus NEEDS_ATTENTION = fromString("NeedsAttention");
/**
* Creates a new instance of ShareStatus value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ShareStatus() {
}
/**
* Creates or finds a ShareStatus from its string representation.
*
* @param name a name to look for.
* @return the corresponding ShareStatus.
*/
public static ShareStatus fromString(String name) {
return fromString(name, ShareStatus.class);
}
/**
* Gets known ShareStatus values.
*
* @return known ShareStatus values.
*/
public static Collection values() {
return values(ShareStatus.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy