public class ValueByte extends Value
Value.ValueBlob, Value.ValueClobARRAY, BLOB, BOOLEAN, BYTE, BYTES, CLOB, DATE, DECIMAL, DOUBLE, ENUM, FLOAT, GEOMETRY, INT, JAVA_OBJECT, LONG, NULL, RESULT_SET, SHORT, STRING, STRING_FIXED, STRING_IGNORECASE, TIME, TIMESTAMP, TIMESTAMP_TZ, TYPE_COUNT, UNKNOWN, UUID| Modifier and Type | Method and Description |
|---|---|
Value |
add(Value v)
Add a value and return the result.
|
protected int |
compareSecure(Value o,
CompareMode mode)
Compare the value with another value of the same type.
|
Value |
divide(Value v)
Divide by a value and return the result.
|
boolean |
equals(java.lang.Object other)
Check if the two values have the same hash code.
|
static ValueByte |
get(byte i)
Get or create byte value for the given byte.
|
byte |
getByte() |
int |
getDisplaySize()
Get the display size in characters.
|
int |
getInt() |
java.lang.Object |
getObject()
Get the value as an object.
|
long |
getPrecision()
Get the precision.
|
int |
getSignum() |
java.lang.String |
getSQL()
Get the SQL expression for this value.
|
java.lang.String |
getString()
Get the value as a string.
|
int |
getType()
Get the value type.
|
int |
hashCode() |
Value |
modulus(Value v)
Take the modulus with a value and return the result.
|
Value |
multiply(Value v)
Multiply with a value and return the result.
|
Value |
negate()
Return -value if this value support arithmetic operations.
|
void |
set(java.sql.PreparedStatement prep,
int parameterIndex)
Set the value as a parameter in a prepared statement.
|
Value |
subtract(Value v)
Subtract a value and return the result.
|
checkPrecision, clearCache, compareTo, compareTypeSafe, convertPrecision, convertScale, convertTo, convertTo, convertTo, convertToEnum, copy, copyToResult, copyToTemp, getBigDecimal, getBoolean, getBytes, getBytesNoCopy, getDataHandler, getDate, getDouble, getFloat, getHigherOrder, getInputStream, getInputStream, getLong, getMemory, getReader, getReader, getResultSet, getScale, getShort, getSmall, getTableId, getTime, getTimestamp, getTraceSQL, isLinkedToTable, remove, throwUnsupportedExceptionForType, toStringpublic Value add(Value v)
Valuepublic Value negate()
Valuepublic Value subtract(Value v)
Valuepublic Value multiply(Value v)
Valuepublic Value divide(Value v)
Valuepublic Value modulus(Value v)
Valuepublic java.lang.String getSQL()
Valuepublic int getType()
Valueprotected int compareSecure(Value o, CompareMode mode)
ValuecompareSecure in class Valueo - the other valuemode - the compare modepublic java.lang.String getString()
Valuepublic long getPrecision()
ValuegetPrecision in class Valuepublic java.lang.Object getObject()
Valuepublic void set(java.sql.PreparedStatement prep,
int parameterIndex)
throws java.sql.SQLException
Valuepublic static ValueByte get(byte i)
i - the bytepublic int getDisplaySize()
ValuegetDisplaySize in class Valuepublic boolean equals(java.lang.Object other)
Value