Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.google.cloud.spanner.connection;

/** Enum used to define the behavior of DML statements in autocommit mode */
enum AutocommitDmlMode {
public enum AutocommitDmlMode {
TRANSACTIONAL,
PARTITIONED_NON_ATOMIC;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.google.cloud.spanner.connection;

/** Enum used to define the transaction type of a {@link Connection} */
enum TransactionMode {
public enum TransactionMode {
READ_ONLY_TRANSACTION("READ ONLY"),
READ_WRITE_TRANSACTION("READ WRITE");

Expand Down