Package com.clickhouse.data
Class ByteUtils
java.lang.Object
com.clickhouse.data.ByteUtils
Deprecated.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanequals(byte[] a, int aFromIndex, int aToIndex, byte[] b, int bFromIndex, int bToIndex) Deprecated.floatgetFloat32(byte[] bytes, int offset) Deprecated.doublegetFloat64(byte[] bytes, int offset) Deprecated.shortgetInt16(byte[] bytes, int offset) Deprecated.intgetInt32(byte[] bytes, int offset) Deprecated.longgetInt64(byte[] bytes, int offset) Deprecated.bytegetInt8(byte[] bytes, int offset) Deprecated.voidsetFloat32(byte[] bytes, int offset, float value) Deprecated.voidsetFloat64(byte[] bytes, int offset, double value) Deprecated.voidsetInt16(byte[] bytes, int offset, short value) Deprecated.voidsetInt32(byte[] bytes, int offset, int value) Deprecated.voidsetInt64(byte[] bytes, int offset, long value) Deprecated.voidsetInt8(byte[] bytes, int offset, byte value) Deprecated.
-
Method Details
-
equals
public boolean equals(byte[] a, int aFromIndex, int aToIndex, byte[] b, int bFromIndex, int bToIndex) Deprecated. -
getInt8
public byte getInt8(byte[] bytes, int offset) Deprecated. -
setInt8
public void setInt8(byte[] bytes, int offset, byte value) Deprecated. -
getInt16
public short getInt16(byte[] bytes, int offset) Deprecated. -
setInt16
public void setInt16(byte[] bytes, int offset, short value) Deprecated. -
getInt32
public int getInt32(byte[] bytes, int offset) Deprecated. -
setInt32
public void setInt32(byte[] bytes, int offset, int value) Deprecated. -
getInt64
public long getInt64(byte[] bytes, int offset) Deprecated. -
setInt64
public void setInt64(byte[] bytes, int offset, long value) Deprecated. -
getFloat32
public float getFloat32(byte[] bytes, int offset) Deprecated. -
setFloat32
public void setFloat32(byte[] bytes, int offset, float value) Deprecated. -
getFloat64
public double getFloat64(byte[] bytes, int offset) Deprecated. -
setFloat64
public void setFloat64(byte[] bytes, int offset, double value) Deprecated.
-