public enum AccessConditionType extends Enum<AccessConditionType>
Enum Constant and Description |
---|
IF_MATCH
Check if the resource's ETag value matches the ETag value performed.
|
IF_NONE_MATCH
Check if the resource's ETag value does not match ETag value performed.
|
Modifier and Type | Method and Description |
---|---|
static AccessConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessConditionType IF_MATCH
public static final AccessConditionType IF_NONE_MATCH
public static AccessConditionType[] values()
for (AccessConditionType c : AccessConditionType.values()) System.out.println(c);
public static AccessConditionType 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 nullCopyright © 2020 Microsoft Corporation. All rights reserved.