SharedAccessTablePermissions Enum

  • java.lang.Object
    • java.lang.Enum<SharedAccessTablePermissions>
      • com.microsoft.azure.storage.table.SharedAccessTablePermissions

public enum SharedAccessTablePermissions

Specifies the set of possible permissions for a shared access table policy.

Fields

ADD

Permission to add entities granted.

DELETE

Permission to delete entities granted.

NONE

No shared access granted.

QUERY

Permission to query entities granted.

UPDATE

Permission to modify entities granted.

Methods

fromByte(final byte value)

protected static EnumSet fromByte(final byte value)

Returns the enum set representing the shared access permissions for the specified byte value.

Parameters

value
final byte
A byte which represents the value to convert to the corresponding enum set.

Returns

A java.util.EnumSet object that contains the SharedAccessTablePermissions values corresponding to the specified byte value.

Applies to