com.azure.resourcemanager.databoxedge.models.AzureContainerDataFormat 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.
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.databoxedge.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Storage format used for the file represented by the share.
*/
public final class AzureContainerDataFormat extends ExpandableStringEnum {
/**
* Static value BlockBlob for AzureContainerDataFormat.
*/
public static final AzureContainerDataFormat BLOCK_BLOB = fromString("BlockBlob");
/**
* Static value PageBlob for AzureContainerDataFormat.
*/
public static final AzureContainerDataFormat PAGE_BLOB = fromString("PageBlob");
/**
* Static value AzureFile for AzureContainerDataFormat.
*/
public static final AzureContainerDataFormat AZURE_FILE = fromString("AzureFile");
/**
* Creates a new instance of AzureContainerDataFormat value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public AzureContainerDataFormat() {
}
/**
* Creates or finds a AzureContainerDataFormat from its string representation.
*
* @param name a name to look for.
* @return the corresponding AzureContainerDataFormat.
*/
public static AzureContainerDataFormat fromString(String name) {
return fromString(name, AzureContainerDataFormat.class);
}
/**
* Gets known AzureContainerDataFormat values.
*
* @return known AzureContainerDataFormat values.
*/
public static Collection values() {
return values(AzureContainerDataFormat.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy