Skip to content

Commit 768c19d

Browse files
authored
fix: fixes javadocs for Key (#532)
Adds NUMERIC, TIMESTAMP and DATE types to the javadocs of the Key class.
1 parent 1020989 commit 768c19d

File tree

1 file changed

+7
-4
lines changed
  • google-cloud-spanner/src/main/java/com/google/cloud/spanner

1 file changed

+7
-4
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/Key.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,13 @@ private Key(List<Object> parts) {
6161
*
6262
* <ul>
6363
* <li>{@code Boolean} for the {@code BOOL} Cloud Spanner type
64-
* <li>{@code Integer}, {@code Long} for {@code INT64}
65-
* <li>{@code Float}, {@code Double} for {@code FLOAT64}
66-
* <li>{@code String} for {@code STRING}
67-
* <li>{@link ByteArray} for {@code BYTES}
64+
* <li>{@code Integer}, {@code Long} for the {@code INT64} Cloud Spanner type
65+
* <li>{@code Float}, {@code Double} for the {@code FLOAT64} Cloud Spanner type
66+
* <li>{@code BigDecimal} for the {@code NUMERIC} Cloud Spanner type
67+
* <li>{@code String} for the {@code STRING} Cloud Spanner type
68+
* <li>{@link ByteArray} for the {@code BYTES} Cloud Spanner type
69+
* <li>{@link Timestamp} for the {@code TIMESTAMP} Cloud Spanner type
70+
* <li>{@link Date} for the {@code DATE} Cloud Spanner type
6871
* </ul>
6972
*
7073
* @throws IllegalArgumentException if any member of {@code values} is not a supported type

0 commit comments

Comments
 (0)