Uses of Class
org.apache.flink.table.data.binary.BinaryStringData
-
Packages that use BinaryStringData Package Description org.apache.flink.table.data.binary -
-
Uses of BinaryStringData in org.apache.flink.table.data.binary
Fields in org.apache.flink.table.data.binary declared as BinaryStringData Modifier and Type Field Description static BinaryStringDataBinaryStringData. EMPTY_UTF8Methods in org.apache.flink.table.data.binary that return BinaryStringData Modifier and Type Method Description static BinaryStringDataBinaryStringData. blankString(int length)Creates aBinaryStringDatainstance that contains `length` spaces.BinaryStringDataBinaryStringData. copy()Copy a newBinaryStringData.static BinaryStringDataBinaryStringData. fromAddress(org.apache.flink.core.memory.MemorySegment[] segments, int offset, int numBytes)Creates aBinaryStringDatainstance from the given address (base and offset) and length.static BinaryStringDataBinaryStringData. fromBytes(byte[] bytes)Creates aBinaryStringDatainstance from the given UTF-8 bytes.static BinaryStringDataBinaryStringData. fromBytes(byte[] bytes, int offset, int numBytes)Creates aBinaryStringDatainstance from the given UTF-8 bytes with offset and number of bytes.static BinaryStringDataBinaryStringData. fromString(String str)Creates aBinaryStringDatainstance from the given Java string.BinaryStringDataBinaryStringData. substring(int beginIndex, int endIndex)Returns a binary string that is a substring of this binary string.BinaryStringDataBinaryStringData. toLowerCase()Converts all of the characters in thisBinaryStringDatato lower case.BinaryStringDataBinaryStringData. toUpperCase()Converts all of the characters in thisBinaryStringDatato upper case.BinaryStringDataBinaryStringData. trim()Returns a string whose value is this string, with any leading and trailing whitespace removed.Methods in org.apache.flink.table.data.binary with parameters of type BinaryStringData Modifier and Type Method Description booleanBinaryStringData. contains(BinaryStringData s)Returns true if and only if this BinaryStringData contains the specified sequence of bytes values.booleanBinaryStringData. endsWith(BinaryStringData suffix)Tests if this BinaryStringData ends with the specified suffix.intBinaryStringData. indexOf(BinaryStringData str, int fromIndex)Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.booleanBinaryStringData. startsWith(BinaryStringData prefix)Tests if this BinaryStringData starts with the specified prefix.
-