public enum SharedAccessAccountPermissions extends Enum<SharedAccessAccountPermissions>
Enum Constant and Description |
---|
ADD
Permission to add messages, table entities, and append to blobs granted.
|
CREATE
Permission to create blobs and files granted.
|
DELETE
Permission to delete resources granted.
|
LIST
Permission to list blob containers, blobs, shares, directories, and files granted.
|
PROCESS_MESSAGES
Permission to get and delete messages granted.
|
READ
Permission to read resources and list queues and tables granted.
|
UPDATE
Permissions to update messages and table entities granted.
|
WRITE
Permission to write resources granted.
|
Modifier and Type | Method and Description |
---|---|
static SharedAccessAccountPermissions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharedAccessAccountPermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharedAccessAccountPermissions READ
public static final SharedAccessAccountPermissions ADD
public static final SharedAccessAccountPermissions CREATE
public static final SharedAccessAccountPermissions WRITE
public static final SharedAccessAccountPermissions DELETE
public static final SharedAccessAccountPermissions LIST
public static final SharedAccessAccountPermissions UPDATE
public static final SharedAccessAccountPermissions PROCESS_MESSAGES
public static SharedAccessAccountPermissions[] values()
for (SharedAccessAccountPermissions c : SharedAccessAccountPermissions.values()) System.out.println(c);
public static SharedAccessAccountPermissions 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 © 2019. All rights reserved.