Skip to content

Commit

Permalink
Added definition of Basic type
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Kraus <[email protected]>
  • Loading branch information
Tomas-Kraus authored and lukasj committed Dec 2, 2021
1 parent 82c9015 commit fc17072
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion spec/src/main/asciidoc/ch02-entities.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1110,6 +1110,14 @@ public class MedicalHistory {
}
----

=== Basic Type

Basic type is any Java primitive type, wrapper of the primitive types, java.lang.String,
java.math.BigInteger, java.math.BigDecimal, java.util.Date, java.util.Calendar, java.sql.Date,
java.sql.Time, java.sql.Timestamp, java.time.LocalDate, java.time.LocalTime,
java.time.LocalDateTime, java.time.OffsetTime, java.time.OffsetDateTime, byte[], Byte[], char[],
Character[], enum, any other type that implements Serializable.

=== Embeddable Classes [[a487]]

An entity may use other fine-grained classes
Expand Down Expand Up @@ -2336,4 +2344,4 @@ identifiers and for which the above rules apply:
* stored-procedure-parameter(name *attribute*)
* table(name, catalog, schema *attributes*)
* table-generator(table, catalog, schema, pk-column-name, value-column-name *attributes*)
* unique-constraint(name *attribute*, column-name *element*)
* unique-constraint(name *attribute*, column-name *element*)

0 comments on commit fc17072

Please sign in to comment.