Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixes javadocs for Key #532

Merged
merged 1 commit into from Oct 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -61,10 +61,13 @@ private Key(List<Object> parts) {
*
* <ul>
* <li>{@code Boolean} for the {@code BOOL} Cloud Spanner type
* <li>{@code Integer}, {@code Long} for {@code INT64}
* <li>{@code Float}, {@code Double} for {@code FLOAT64}
* <li>{@code String} for {@code STRING}
* <li>{@link ByteArray} for {@code BYTES}
* <li>{@code Integer}, {@code Long} for the {@code INT64} Cloud Spanner type
* <li>{@code Float}, {@code Double} for the {@code FLOAT64} Cloud Spanner type
* <li>{@code BigDecimal} for the {@code NUMERIC} Cloud Spanner type
* <li>{@code String} for the {@code STRING} Cloud Spanner type
* <li>{@link ByteArray} for the {@code BYTES} Cloud Spanner type
* <li>{@link Timestamp} for the {@code TIMESTAMP} Cloud Spanner type
* <li>{@link Date} for the {@code DATE} Cloud Spanner type
* </ul>
*
* @throws IllegalArgumentException if any member of {@code values} is not a supported type
Expand Down