com.azure.resourcemanager.databoxedge.models.AzureContainerDataFormat Maven / Gradle / Ivy
// 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 - 2024 Weber Informatics LLC | Privacy Policy