public enum ConsistentReadControl extends Enum<ConsistentReadControl>
| Enum Constant and Description |
|---|
ETAG
Default value.
|
NONE
No consistent read control.
|
| Modifier and Type | Method and Description |
|---|---|
static ConsistentReadControl |
valueOf(String name)
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.
|
public static final ConsistentReadControl NONE
MatchConditions.getIfMatch()public static final ConsistentReadControl ETAG
MatchConditions.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 an IOException or a BlobStorageException if
eTag is the only form of consistent read control being employed.public static ConsistentReadControl[] values()
public static ConsistentReadControl valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullVisit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.