Package com.clickhouse.client.data
Class ClickHouseBitmapValue
- java.lang.Object
-
- com.clickhouse.client.data.ClickHouseObjectValue<ClickHouseBitmap>
-
- com.clickhouse.client.data.ClickHouseBitmapValue
-
- All Implemented Interfaces:
ClickHouseValue,Serializable
public class ClickHouseBitmapValue extends ClickHouseObjectValue<ClickHouseBitmap>
Wraper class of Bitmap.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedClickHouseBitmapValue(ClickHouseBitmap value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalasBigDecimal(int scale)Gets value asBigDecimal.BigIntegerasBigInteger()Gets value asBigInteger.byteasByte()Gets value as byte.doubleasDouble()Gets value as double.floatasFloat()Gets value as float.intasInteger()Gets value as integer.longasLong()Gets value as long.ObjectasObject()Gets value as an object.shortasShort()Gets value as short.ClickHouseBitmapValuecopy(boolean deep)Gets a copy of this value object.longgetCardinality()booleanisNullOrEmpty()Checks if the value is null, or empty for non-null types like Array, Tuple and Map.static ClickHouseBitmapValueof(ClickHouseValue ref, ClickHouseBitmap value)Update value of the given object or create a new instance ifrefis null.static ClickHouseBitmapValueof(ClickHouseBitmap value)Wrap the given value.static ClickHouseBitmapValueofEmpty(ClickHouseDataType valueType)Create a new instance representing empty value.static ClickHouseBitmapValueofEmpty(ClickHouseValue ref, ClickHouseDataType valueType)Update given value to empty or create a new instance ifrefis null.StringtoSqlExpression()Converts the value to escaped SQL expression.ClickHouseBitmapValueupdate(boolean value)Updates value.ClickHouseBitmapValueupdate(byte value)Updates value.ClickHouseBitmapValueupdate(char value)Updates value.ClickHouseBitmapValueupdate(double value)Updates value.ClickHouseBitmapValueupdate(float value)Updates value.ClickHouseBitmapValueupdate(int value)Updates value.ClickHouseBitmapValueupdate(long value)Updates value.ClickHouseBitmapValueupdate(short value)Updates value.ClickHouseBitmapValueupdate(ClickHouseValue value)Updates value.ClickHouseBitmapValueupdate(Enum<?> value)Updates value.ClickHouseBitmapValueupdate(Object value)Updates value.ClickHouseBitmapValueupdate(String value)Updates value.ClickHouseBitmapValueupdate(BigDecimal value)Updates value.ClickHouseBitmapValueupdate(BigInteger value)Updates value.ClickHouseBitmapValueupdate(Inet4Address value)Updates value.ClickHouseBitmapValueupdate(Inet6Address value)Updates value.ClickHouseBitmapValueupdate(LocalDate value)Updates value.ClickHouseBitmapValueupdate(LocalDateTime value)Updates value.ClickHouseBitmapValueupdate(LocalTime value)Updates value.ClickHouseBitmapValueupdate(UUID value)Updates value.-
Methods inherited from class com.clickhouse.client.data.ClickHouseObjectValue
asString, equals, getValue, hashCode, resetToNullOrEmpty, set, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.clickhouse.client.ClickHouseValue
asArray, asArray, asBigDecimal, asBoolean, asByteStream, asCharacter, asCharacterStream, asDate, asDateTime, asDateTime, asEnum, asInet4Address, asInet6Address, asInstant, asInstant, asMap, asMap, asObject, asOffsetDateTime, asOffsetDateTime, asString, asString, asString, asTime, asTime, asTuple, asUuid, asZonedDateTime, asZonedDateTime, copy, isInfinity, isNaN, newUnsupportedException, update, update, update, update, update, update, update, update, update, update, update, update, update, update, update, update, update, updateUnknown
-
-
-
-
Constructor Detail
-
ClickHouseBitmapValue
protected ClickHouseBitmapValue(ClickHouseBitmap value)
-
-
Method Detail
-
ofEmpty
public static ClickHouseBitmapValue ofEmpty(ClickHouseDataType valueType)
Create a new instance representing empty value.- Parameters:
valueType- value type, must be native integer- Returns:
- new instance representing empty value
-
ofEmpty
public static ClickHouseBitmapValue ofEmpty(ClickHouseValue ref, ClickHouseDataType valueType)
Update given value to empty or create a new instance ifrefis null.- Parameters:
ref- object to update, could be nullvalueType- value type, must be native integer- Returns:
- same object as
refor a new instance if it's null
-
of
public static ClickHouseBitmapValue of(ClickHouseBitmap value)
Wrap the given value.- Parameters:
value- value- Returns:
- object representing the value
-
of
public static ClickHouseBitmapValue of(ClickHouseValue ref, ClickHouseBitmap value)
Update value of the given object or create a new instance ifrefis null.- Parameters:
ref- object to update, could be nullvalue- value- Returns:
- same object as
refor a new instance if it's null
-
copy
public ClickHouseBitmapValue copy(boolean deep)
Description copied from interface:ClickHouseValueGets a copy of this value object.- Parameters:
deep- true to create a deep copy; false for a shallow copy- Returns:
- copy of this value object
-
isNullOrEmpty
public boolean isNullOrEmpty()
Description copied from interface:ClickHouseValueChecks if the value is null, or empty for non-null types like Array, Tuple and Map.Please pay attention that only nullability will be considered for String, meaning this method will return
falsefor an empty string. This is because String is treated as value-based type instead of a container like Array.- Specified by:
isNullOrEmptyin interfaceClickHouseValue- Overrides:
isNullOrEmptyin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- true if the value is null or empty; false otherwise
-
asByte
public byte asByte()
Description copied from interface:ClickHouseValueGets value as byte.- Specified by:
asBytein interfaceClickHouseValue- Overrides:
asBytein classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- byte value
-
asShort
public short asShort()
Description copied from interface:ClickHouseValueGets value as short.- Specified by:
asShortin interfaceClickHouseValue- Overrides:
asShortin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- short value
-
asInteger
public int asInteger()
Description copied from interface:ClickHouseValueGets value as integer.- Specified by:
asIntegerin interfaceClickHouseValue- Overrides:
asIntegerin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- integer value
-
asLong
public long asLong()
Description copied from interface:ClickHouseValueGets value as long.- Specified by:
asLongin interfaceClickHouseValue- Overrides:
asLongin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- long value
-
asBigInteger
public BigInteger asBigInteger()
Description copied from interface:ClickHouseValueGets value asBigInteger.- Specified by:
asBigIntegerin interfaceClickHouseValue- Overrides:
asBigIntegerin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- big integer, could be null
-
asFloat
public float asFloat()
Description copied from interface:ClickHouseValueGets value as float.- Specified by:
asFloatin interfaceClickHouseValue- Overrides:
asFloatin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- float value
-
asDouble
public double asDouble()
Description copied from interface:ClickHouseValueGets value as double.- Specified by:
asDoublein interfaceClickHouseValue- Overrides:
asDoublein classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- double value
-
asBigDecimal
public BigDecimal asBigDecimal(int scale)
Description copied from interface:ClickHouseValueGets value asBigDecimal.- Specified by:
asBigDecimalin interfaceClickHouseValue- Overrides:
asBigDecimalin classClickHouseObjectValue<ClickHouseBitmap>- Parameters:
scale- scale of the decimal- Returns:
- big decimal, could be null
-
asObject
public Object asObject()
Description copied from interface:ClickHouseValueGets value as an object.- Specified by:
asObjectin interfaceClickHouseValue- Overrides:
asObjectin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- an object representing the value, could be null
-
getCardinality
public long getCardinality()
-
toSqlExpression
public String toSqlExpression()
Description copied from interface:ClickHouseValueConverts the value to escaped SQL expression. For example, number 123 will be converted to123, while string "12'3" will be converted to @{code '12\'3'}.- Specified by:
toSqlExpressionin interfaceClickHouseValue- Overrides:
toSqlExpressionin classClickHouseObjectValue<ClickHouseBitmap>- Returns:
- escaped SQL expression
-
update
public ClickHouseBitmapValue update(boolean value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(char value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(byte value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(short value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(int value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(long value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(float value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(double value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(BigInteger value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(BigDecimal value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(Enum<?> value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(Inet4Address value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(Inet6Address value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(LocalDate value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(LocalTime value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(LocalDateTime value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(String value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(UUID value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(ClickHouseValue value)
Description copied from interface:ClickHouseValueUpdates value.- Parameters:
value- value to update- Returns:
- this object
-
update
public ClickHouseBitmapValue update(Object value)
Description copied from interface:ClickHouseValueUpdates value. This method tries to identify type ofvalueand then use corresponding update method to proceed. Unknown value will be passed toClickHouseValue.updateUnknown(Object).- Specified by:
updatein interfaceClickHouseValue- Overrides:
updatein classClickHouseObjectValue<ClickHouseBitmap>- Parameters:
value- value to update, could be null- Returns:
- this object
-
-