public static enum TransactionalHostContextAccessor.Permission extends Enum<TransactionalHostContextAccessor.Permission>
Enum Constant and Description |
---|
READ_ONLY
Allows only reading values from the underlying database.
|
READ_WRITE
Allows reading and updating values in the underlying database.
|
Modifier and Type | Method and Description |
---|---|
static TransactionalHostContextAccessor.Permission |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionalHostContextAccessor.Permission[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionalHostContextAccessor.Permission READ_ONLY
public static final TransactionalHostContextAccessor.Permission READ_WRITE
public static TransactionalHostContextAccessor.Permission[] values()
for (TransactionalHostContextAccessor.Permission c : TransactionalHostContextAccessor.Permission.values()) System.out.println(c);
public static TransactionalHostContextAccessor.Permission 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 © 2003–2018 Atlassian. All rights reserved.