public enum SharedAccessTablePermissions extends Enum<SharedAccessTablePermissions>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
protected static EnumSet<SharedAccessTablePermissions> |
fromByte(byte value)
Returns the enum set representing the shared access permissions for the specified byte value.
|
static SharedAccessTablePermissions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharedAccessTablePermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharedAccessTablePermissions NONE
public static final SharedAccessTablePermissions QUERY
public static final SharedAccessTablePermissions ADD
public static final SharedAccessTablePermissions UPDATE
public static final SharedAccessTablePermissions DELETE
public static SharedAccessTablePermissions[] values()
for (SharedAccessTablePermissions c : SharedAccessTablePermissions.values()) System.out.println(c);
public static SharedAccessTablePermissions 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 nullprotected static EnumSet<SharedAccessTablePermissions> fromByte(byte value)
value
- A byte
which represents the value to convert to the corresponding enum set.java.util.EnumSet
object that contains the SharedAccessTablePermissions
values
corresponding to the specified byte value.Copyright © 2019. All rights reserved.