Package org.h2.value
Class ValueClob
- java.lang.Object
-
- org.h2.value.VersionedValue<Value>
-
- org.h2.value.Value
-
- org.h2.value.ValueLob
-
- org.h2.value.ValueClob
-
-
Field Summary
-
Fields inherited from class org.h2.value.Value
ARRAY, ASSIGN_TO, BIGINT, BINARY, BLOB, BOOLEAN, CAST_TO, CHAR, CLOB, CONVERT_TO, DATE, DECFLOAT, DOUBLE, EMPTY_VALUES, ENUM, GEOMETRY, INTEGER, INTERVAL_DAY, INTERVAL_DAY_TO_HOUR, INTERVAL_DAY_TO_MINUTE, INTERVAL_DAY_TO_SECOND, INTERVAL_HOUR, INTERVAL_HOUR_TO_MINUTE, INTERVAL_HOUR_TO_SECOND, INTERVAL_MINUTE, INTERVAL_MINUTE_TO_SECOND, INTERVAL_MONTH, INTERVAL_SECOND, INTERVAL_YEAR, INTERVAL_YEAR_TO_MONTH, JAVA_OBJECT, JSON, MAX_LONG_DECIMAL, MIN_LONG_DECIMAL, NULL, NUMERIC, REAL, ROW, SMALLINT, TIME, TIME_TZ, TIMESTAMP, TIMESTAMP_TZ, TINYINT, TYPE_COUNT, UNKNOWN, UUID, VARBINARY, VARCHAR, VARCHAR_IGNORECASE
-
Fields inherited from class org.h2.value.VersionedValue
NO_ENTRY_ID, NO_OPERATION_ID
-
Fields inherited from interface org.h2.util.HasSQL
ADD_PLAN_INFORMATION, DEFAULT_SQL_FLAGS, NO_CASTS, QUOTE_ONLY_WHEN_REQUIRED, REPLACE_LOBS_FOR_TRACE, TRACE_SQL_FLAGS
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description longcharLength()Returns length of this value in characters.intcompareTypeSafe(Value v, CompareMode mode, CastDataProvider provider)Compare this value against another value given that the values are of the same data type.ValueLobcopy(DataHandler database, int tableId)Copy a large value, to be used in the given table.static ValueClobcreateSmall(byte[] data)Creates a small CLOB value that can be stored in the row directly.static ValueClobcreateSmall(byte[] data, long charLength)Creates a small CLOB value that can be stored in the row directly.static ValueClobcreateSmall(java.lang.String string)Creates a small CLOB value that can be stored in the row directly.static ValueClobcreateTempClob(java.io.Reader in, long length, DataHandler handler)Create a temporary CLOB value from a stream.java.io.InputStreamgetInputStream()java.io.InputStreamgetInputStream(long oneBasedOffset, long length)Get the input streamjava.io.ReadergetReader(long oneBasedOffset, long length)Get the readerjava.lang.StringBuildergetSQL(java.lang.StringBuilder builder, int sqlFlags)Appends the SQL statement of this object to the specified builder.java.lang.StringgetString()Get the value as a string.intgetValueType()Get the value type.longoctetLength()Returns length of this value in bytes.-
Methods inherited from class org.h2.value.ValueLob
copyToResult, equals, getBytes, getBytesNoCopy, getLobData, getMemory, getReader, getType, hashCode, isLinkedToTable, rangeInputStream, remove
-
Methods inherited from class org.h2.value.Value
add, castTo, clearCache, compareTo, compareWithNull, containsNull, convertForAssignTo, convertTo, convertTo, convertTo, convertTo, convertTo, convertToAnyArray, convertToAnyJson, convertToAnyRow, convertToBigint, convertToBoolean, convertToChar, convertToDate, convertToDouble, convertToEnum, convertToGeometry, convertToInt, convertToInt, convertToJavaObject, convertToJson, convertToLong, convertToReal, convertToSmallint, convertToTinyint, convertToUuid, divide, getBigDecimal, getBigInteger, getBoolean, getByte, getDouble, getFloat, getHigherOrder, getInt, getLong, getShort, getSignum, getTypeName, getUnsupportedExceptionForOperation, getValueWithFirstNull, isFalse, isTrue, modulus, multiply, negate, subtract, toString
-
Methods inherited from class org.h2.value.VersionedValue
getCommittedValue, getCurrentValue, getEntryId, getOperationId, isCommitted
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.h2.util.HasSQL
getSQL, getTraceSQL
-
-
-
-
Constructor Detail
-
ValueClob
public ValueClob(LobData lobData, long octetLength, long charLength)
-
-
Method Detail
-
createSmall
public static ValueClob createSmall(byte[] data)
Creates a small CLOB value that can be stored in the row directly.- Parameters:
data- the data in UTF-8 encoding- Returns:
- the CLOB
-
createSmall
public static ValueClob createSmall(byte[] data, long charLength)
Creates a small CLOB value that can be stored in the row directly.- Parameters:
data- the data in UTF-8 encodingcharLength- the count of characters, must be exactly the same as count of characters in the data- Returns:
- the CLOB
-
createSmall
public static ValueClob createSmall(java.lang.String string)
Creates a small CLOB value that can be stored in the row directly.- Parameters:
string- the string with value- Returns:
- the CLOB
-
createTempClob
public static ValueClob createTempClob(java.io.Reader in, long length, DataHandler handler)
Create a temporary CLOB value from a stream.- Parameters:
in- the readerlength- the number of characters to read, or -1 for no limithandler- the data handler- Returns:
- the lob value
-
getValueType
public int getValueType()
Description copied from class:ValueGet the value type.- Specified by:
getValueTypein classValue- Returns:
- the value type
-
getString
public java.lang.String getString()
Description copied from class:ValueGet the value as a string.
-
getInputStream
public java.io.InputStream getInputStream()
- Overrides:
getInputStreamin classValue
-
getInputStream
public java.io.InputStream getInputStream(long oneBasedOffset, long length)Description copied from class:ValueGet the input stream- Overrides:
getInputStreamin classValue- Parameters:
oneBasedOffset- the offset (1 means no offset)length- the requested length- Returns:
- the new input stream
-
getReader
public java.io.Reader getReader(long oneBasedOffset, long length)Description copied from class:ValueGet the reader
-
compareTypeSafe
public int compareTypeSafe(Value v, CompareMode mode, CastDataProvider provider)
Description copied from class:ValueCompare this value against another value given that the values are of the same data type.- Specified by:
compareTypeSafein classValue- Parameters:
v- the other valuemode- the compare modeprovider- the cast information provider- Returns:
- 0 if both values are equal, -1 if the other value is smaller, and 1 otherwise
-
getSQL
public java.lang.StringBuilder getSQL(java.lang.StringBuilder builder, int sqlFlags)Description copied from interface:HasSQLAppends the SQL statement of this object to the specified builder.- Parameters:
builder- string buildersqlFlags- formatting flags- Returns:
- the specified string builder
-
copy
public ValueLob copy(DataHandler database, int tableId)
Description copied from class:ValueLobCopy a large value, to be used in the given table. For values that are kept fully in memory this method has no effect.
-
charLength
public long charLength()
Description copied from class:ValueReturns length of this value in characters.- Overrides:
charLengthin classValue- Returns:
- length of this value in characters
-
octetLength
public long octetLength()
Description copied from class:ValueReturns length of this value in bytes.- Overrides:
octetLengthin classValue- Returns:
- length of this value in bytes
-
-