ArrayType¶
ArrayType
is a DataType.
Creating Instance¶
ArrayType
takes the following to be created:
- DataType of the elements
-
containsNull
flag
defaultSize¶
defaultSize: Int
defaultSize
is part of the DataType abstraction.
defaultSize
is the defaultSize of the elementType.
jsonValue¶
jsonValue: JValue
jsonValue
is part of the DataType abstraction.
jsonValue
...FIXME
Simple Representation¶
simpleString: String
simpleString
is part of the DataType abstraction.
simpleString
is the following:
array<[elementType]>
Catalog Representation¶
catalogString: String
catalogString
is part of the DataType abstraction.
catalogString
is the following:
array<[elementType]>
SQL Representation¶
sql: String
sql
is part of the DataType abstraction.
sql
is the following:
ARRAY<[elementType]>