com.microsoft.azure.storage.blob.RehydratePriority Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage Show documentation
Show all versions of azure-storage Show documentation
SDK for Microsoft Azure Storage Clients
package com.microsoft.azure.storage.blob;
import com.microsoft.azure.storage.core.Utility;
import java.util.Locale;
/**
* The rehydrate priority of the blob.
*/
public enum RehydratePriority {
/**
* The rehydrate priority is high.
*/
HIGH,
/**
* The rehydrate priority is standard.
*/
STANDARD;
}