Uses of Class
org.apache.flink.table.data.binary.BinaryStringData
Packages that use BinaryStringData
-
Uses of BinaryStringData in org.apache.flink.table.data.binary
Fields in org.apache.flink.table.data.binary declared as BinaryStringDataMethods in org.apache.flink.table.data.binary that return BinaryStringDataModifier and TypeMethodDescriptionstatic BinaryStringDataBinaryStringData.blankString(int length) Creates aBinaryStringDatainstance that contains `length` spaces.BinaryStringData.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.BinaryStringData.substring(int beginIndex, int endIndex) Returns a binary string that is a substring of this binary string.BinaryStringData.toLowerCase()Converts all of the characters in thisBinaryStringDatato lower case.BinaryStringData.toUpperCase()Converts all of the characters in thisBinaryStringDatato upper case.BinaryStringData.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 BinaryStringDataModifier and TypeMethodDescriptionbooleanBinaryStringData.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.