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

Definition at line 53 of file ValueFloat.java.
Public Member Functions | |
| ValueFloat () | |
| ValueFloat (float val) | |
| ValueFloat (String s) throws ValueException | |
| final float | floatValue () |
| Value | unop (int op) throws ValueException |
| Value | binop (int op, Value l) throws ValueException |
| Two-level virtual operator dispatch. | |
| Value | binop (int op, ValueFloat r) throws ValueException |
| Value | binop (int op, ValueDouble r) throws ValueException |
| Value | binop (int op, ValueInteger r) throws ValueException |
| Value | binop (int op, ValueShort r) throws ValueException |
| Value | binop (int op, ValueByte r) throws ValueException |
| Value | binop (int op, ValueLong r) throws ValueException |
| Value | binop (int op, ValueScaledInteger r) throws ValueException |
| Value | binop (int op, ValueNull r) throws ValueException |
| Object | asJavaObject () |
| void | fromJavaObject (Object obj) throws ValueException |
| void | readExternal (ObjectInput in) throws IOException |
| void | writeExternal (ObjectOutput out) throws IOException |
| Value | convert (TypeTinyInt type) throws ValueException |
| Value | convert (TypeSmallInt type) throws ValueException |
| Value | convert (TypeInt type) throws ValueException |
| Value | convert (TypeBigInt type) throws ValueException |
| Value | convert (TypeDecimal type) throws ValueException |
| Value | convert (TypeReal type) throws ValueException |
| Type | getType () |
| void | serializeKey (KeyStream out) throws IOException |
| String | toString () |
Static Public Member Functions | |
| final Value | binop (int op, ValueFloat e, ValueFloat f) throws ValueException |
Package Attributes | |
| float | val |
|
|
Definition at line 56 of file ValueFloat.java. Referenced by com.quadcap.sql.types.ValueFloat.binop(), and com.quadcap.sql.types.ValueFloat.unop(). |
|
|
Definition at line 58 of file ValueFloat.java. |
|
|
Definition at line 60 of file ValueFloat.java. |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 184 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val. |
|
||||||||||||||||
|
Definition at line 144 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.ValueFloat(). |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 121 of file ValueFloat.java. |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 116 of file ValueFloat.java. References com.quadcap.sql.types.Value.binop(), and com.quadcap.sql.types.ValueFloat.val. |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 112 of file ValueFloat.java. References com.quadcap.sql.types.Value.binop(), and com.quadcap.sql.types.ValueFloat.ValueFloat(). |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 108 of file ValueFloat.java. References com.quadcap.sql.types.Value.binop(), and com.quadcap.sql.types.ValueFloat.ValueFloat(). |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 104 of file ValueFloat.java. References com.quadcap.sql.types.Value.binop(), and com.quadcap.sql.types.ValueFloat.ValueFloat(). |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 100 of file ValueFloat.java. References com.quadcap.sql.types.Value.binop(), and com.quadcap.sql.types.ValueFloat.ValueFloat(). |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 96 of file ValueFloat.java. References com.quadcap.sql.types.Value.binop(), and com.quadcap.sql.types.ValueFloat.val. |
|
||||||||||||
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 92 of file ValueFloat.java. References com.quadcap.sql.types.Value.binop(). |
|
||||||||||||
|
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 88 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.binop(). Referenced by com.quadcap.sql.types.ValueFloat.binop(). |
|
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 237 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val. |
|
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 222 of file ValueFloat.java. References com.quadcap.sql.types.ValueScaledInteger.requiredPrecision(), com.quadcap.sql.types.ValueScaledInteger.setScale(), and com.quadcap.sql.types.ValueFloat.val. |
|
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 218 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val. |
|
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 214 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val. |
|
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 210 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val. |
|
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 206 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.convert(), and com.quadcap.sql.types.ValueFloat.val. Referenced by com.quadcap.sql.types.ValueFloat.convert(). |
|
|
Definition at line 72 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val. Referenced by com.quadcap.jdbc.ResultSet.getFloat(). |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 188 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.fromJavaObject(), and com.quadcap.sql.types.ValueFloat.val. Referenced by com.quadcap.sql.types.ValueFloat.fromJavaObject(). |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 247 of file ValueFloat.java. |
|
|
Definition at line 196 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.readExternal(), and com.quadcap.sql.types.ValueFloat.val. Referenced by com.quadcap.sql.types.ValueFloat.readExternal(). |
|
|
Implements com.quadcap.sql.types.Value. Definition at line 251 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.serializeKey(), and com.quadcap.sql.types.ValueFloat.val. Referenced by com.quadcap.sql.types.ValueFloat.serializeKey(). |
|
|
Definition at line 255 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val. |
|
|
Reimplemented from com.quadcap.sql.types.Value. Definition at line 74 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.unop(), com.quadcap.sql.types.ValueFloat.val, and com.quadcap.sql.types.ValueFloat.ValueFloat(). Referenced by com.quadcap.sql.types.ValueFloat.unop(). |
|
|
Definition at line 200 of file ValueFloat.java. References com.quadcap.sql.types.ValueFloat.val, and com.quadcap.sql.types.ValueFloat.writeExternal(). Referenced by com.quadcap.sql.types.ValueFloat.writeExternal(). |
|