|
Scala
1.4.0.4 |
|||
Field Summary | |
abstract
|
type NativeType
The native Scala type in which values of this SQL type will be encoded. |
Method Summary | |
abstract
|
def isEquivalent(datatype: DataType): Boolean
Tests whether this datatype is equivalent to another. |
abstract
|
def isSubtypeOf(datatype: DataType): Boolean
Tests whether this datatype is equivalent or a subtype of another datatype. |
abstract
|
def nativeTypeId: Int
The native Scala type in which values of this SQL type will be encoded. |
def nullable: Option[Boolean]
Whether the value can take the null value, None when this property is unknown. |
|
def sqlString: String
The SQL name of the type |
Methods inherited from java/lang/Object-class |
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait |
Methods inherited from scala/Any-class |
!=, ==, asInstanceOf, isInstanceOf, match |
Methods inherited from scala/ScalaObject-class |
getScalaType |
Field Detail |
abstract type NativeType
Method Detail |
abstract def isEquivalent(datatype: DataType): Boolean
abstract def isSubtypeOf(datatype: DataType): Boolean
A
is said to be subtype of type
B
if any value of type A
can be
represented as a value of type B
.
abstract def nativeTypeId: Int
NativeType
.
def nullable: Option[Boolean]
def sqlString: String
|
Scala
1.4.0.4 |
|||