Uses of Class
org.apache.calcite.avatica.util.ByteString
-
Packages that use ByteString Package Description org.apache.calcite.avatica.util Avatica utilities. -
-
Uses of ByteString in org.apache.calcite.avatica.util
Fields in org.apache.calcite.avatica.util declared as ByteString Modifier and Type Field Description static ByteStringByteString. EMPTYAn empty byte string.Methods in org.apache.calcite.avatica.util that return ByteString Modifier and Type Method Description ByteStringByteString. concat(ByteString other)Returns a ByteString consisting of the concatenation of this and another string.static ByteStringByteString. of(java.lang.String string, int base)Creates a byte string from a hexadecimal or binary string.static ByteStringByteString. ofBase64(java.lang.String string)Creates a byte string from a Base64 string.ByteStringByteString. substring(int start)Returns a ByteString that starts at a given position.ByteStringByteString. substring(int start, int end)Returns a ByteString that consists of a given range.Methods in org.apache.calcite.avatica.util with parameters of type ByteString Modifier and Type Method Description intByteString. compareTo(ByteString that)ByteStringByteString. concat(ByteString other)Returns a ByteString consisting of the concatenation of this and another string.intByteString. indexOf(ByteString seek)Returns the position at whichseekfirst occurs in this byte string, or -1 if it does not occur.intByteString. indexOf(ByteString seek, int start)Returns the position at whichseekfirst occurs in this byte string, starting at the specified index, or -1 if it does not occur.
-