Package com.azure.storage.blob.models
Enum ConsistentReadControl
- All Implemented Interfaces:
Serializable
,Comparable<ConsistentReadControl>
,java.lang.constant.Constable
Defines values to indicate what strategy the SDK should use when reading from a blob to ensure the view of the data
is consistent and not changed during the read.
NONE
ETAG
VERSION_ID
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDefault value.No consistent read control.Consistent control based on versionId. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConsistentReadControl
Returns the enum constant of this type with the specified name.static ConsistentReadControl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
No consistent read control. The client will honor user providedMatchConditions.getIfMatch()
andBlobClientBase.getVersionId()
. -
ETAG
Default value. Consistent read control based on eTag. IfMatchConditions.getIfMatch()
is set, the client will honor this value. Otherwise,MatchConditions.getIfMatch()
is set to the latest eTag. Note: Modification of the base blob will result in anIOException
or aBlobStorageException
if eTag is the only form of consistent read control being employed. -
VERSION_ID
Consistent control based on versionId. Note: Versioning must be supported by the account to use this value. IfBlobClientBase.getVersionId()
is set, the client will honor this value. Otherwise,BlobClientBase.getVersionId()
is set to the latest versionId. Note: Modification of the base blob will not result in anException
and allow you to continue reading the entirety of the appropriate version of the blob determined at the time of opening theInputStream
but it may no longer be the latest data.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-