public static enum TransactionOptions.TransactionOptionsType extends Enum<TransactionOptions.TransactionOptionsType>
| Enum Constant and Description |
|---|
READ_ONLY |
READ_WRITE |
| Modifier and Type | Method and Description |
|---|---|
static TransactionOptions.TransactionOptionsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionOptions.TransactionOptionsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionOptions.TransactionOptionsType READ_ONLY
public static final TransactionOptions.TransactionOptionsType READ_WRITE
public static TransactionOptions.TransactionOptionsType[] values()
for (TransactionOptions.TransactionOptionsType c : TransactionOptions.TransactionOptionsType.values()) System.out.println(c);
public static TransactionOptions.TransactionOptionsType 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 © 2022 Google LLC. All rights reserved.