Uses of Class
com.google.appengine.api.datastore.TransactionOptions.Mode
-
Packages that use TransactionOptions.Mode Package Description com.google.appengine.api.datastore -
-
Uses of TransactionOptions.Mode in com.google.appengine.api.datastore
Methods in com.google.appengine.api.datastore that return TransactionOptions.Mode Modifier and Type Method Description @Nullable TransactionOptions.Mode
TransactionOptions. transactionMode()
Return the mode of the transaction, ornull
if none was specified.static TransactionOptions.Mode
TransactionOptions.Mode. valueOf(String name)
Returns the enum constant of this type with the specified name.static TransactionOptions.Mode[]
TransactionOptions.Mode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.appengine.api.datastore with parameters of type TransactionOptions.Mode Modifier and Type Method Description TransactionOptions
TransactionOptions. setTransactionMode(TransactionOptions.Mode mode)
Set the mode of the transaction.static TransactionOptions
TransactionOptions.Builder. withTransactionMode(TransactionOptions.Mode mode)
Shorthand forTransactionOptions.withDefaults().setTransactionMode(...);
-