Skip to content

Commit

Permalink
doc: update javadoc at the column-module
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Jun 16, 2023
1 parent 2173cab commit 1303361
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions api/nosql-column/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
/**
* The Jakarta NoSQL column module.
* <p>
* A column family is a NoSQL object that contains columns of related data. It is a tuple (pair)
* that consists of a key-value pair, where the key is mapped to a value that is a set of columns.
* In analogy with relational databases, a column family is as a <b>"table"</b>, each key-value pair being a <b>"row"</b>.
* </p>
*/
module jakarta.nosql.column {
requires jakarta.nosql.core;
exports jakarta.nosql.column;
Expand Down

0 comments on commit 1303361

Please sign in to comment.