![]() |
Quadcap Embeddable Database |
Inheritance diagram for com.quadcap.sql.types.ValueDefault:

Definition at line 51 of file ValueDefault.java.
Public Member Functions | |
| ValueDefault () | |
| Value | binop (int op, Value l) throws ValueException |
| Two-level virtual operator dispatch. | |
| Object | asJavaObject () throws ValueException |
| void | fromJavaObject (Object obj) throws ValueException |
| Type | getType () |
| void | readExternal (ObjectInput in) throws IOException |
| void | writeExternal (ObjectOutput out) throws IOException |
| void | serializeKey (KeyStream out) throws IOException |
Static Public Attributes | |
| final ValueDefault | valueDefault = new ValueDefault() |
|
|
Definition at line 55 of file ValueDefault.java. |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 61 of file ValueDefault.java. |
|
||||||||||||
|
Two-level virtual operator dispatch. Each subtype implements the same basic template for this abstract function:
Value binop(int op, Value l) { return l.binop(op, this); }
Then, type overloading allows for each type to implement all ops for which it can be the left hand side for all allowed types on the right hand side: Value binop(int op, ValueInteger l); Value binop(int op, ValueLong l); ... Implements com.quadcap.sql.types.Value. Definition at line 57 of file ValueDefault.java. References com.quadcap.sql.types.ValueDefault.binop(). Referenced by com.quadcap.sql.types.ValueDefault.binop(). |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 65 of file ValueDefault.java. References com.quadcap.sql.types.ValueDefault.fromJavaObject(). Referenced by com.quadcap.sql.types.ValueDefault.fromJavaObject(). |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 69 of file ValueDefault.java. |
|
|
Definition at line 73 of file ValueDefault.java. References com.quadcap.sql.types.ValueDefault.readExternal(). Referenced by com.quadcap.sql.types.ValueDefault.readExternal(). |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 81 of file ValueDefault.java. References com.quadcap.sql.types.ValueDefault.serializeKey(). Referenced by com.quadcap.sql.types.ValueDefault.serializeKey(). |
|
|
Definition at line 76 of file ValueDefault.java. References com.quadcap.sql.types.ValueDefault.writeExternal(). Referenced by com.quadcap.sql.types.ValueDefault.writeExternal(). |
|
|
Definition at line 53 of file ValueDefault.java. |