Uses of Class
org.apache.datasketches.memory.Utf8CodingException
-
-
Uses of Utf8CodingException in org.apache.datasketches.memory
Methods in org.apache.datasketches.memory that return Utf8CodingException Modifier and Type Method Description static Utf8CodingException
Utf8CodingException. illegalSurrogatePair(char c1, char c2)
Exception for an illegal surrogate pairstatic Utf8CodingException
Utf8CodingException. illegalUtf8DecodeByteSequence(byte[] bytes)
Exception for an illegal UTF_8 Decode Byte Sequencestatic Utf8CodingException
Utf8CodingException. outOfMemory()
Exception for out-of-memorystatic Utf8CodingException
Utf8CodingException. shortUtf8DecodeByteSequence(byte leadByte, long address, long limit, int required)
Exception for a short UTF_8 Decode Byte Sequencestatic Utf8CodingException
Utf8CodingException. shortUtf8EncodeByteLength(int remaining)
Exception for a short UTF_8 encode byte lengthstatic Utf8CodingException
Utf8CodingException. unpairedSurrogate(char c)
Exception for an unpaired surrogateMethods in org.apache.datasketches.memory that throw Utf8CodingException Modifier and Type Method Description int
Memory. getCharsFromUtf8(long offsetBytes, int utf8LengthBytes, Appendable dst)
Gets UTF-8 encoded bytes from this Memory, starting at offsetBytes to a length of utf8LengthBytes, decodes them into characters and appends them to the given Appendable.int
Memory. getCharsFromUtf8(long offsetBytes, int utf8LengthBytes, StringBuilder dst)
Gets UTF-8 encoded bytes from this Memory, starting at offsetBytes to a length of utf8LengthBytes, decodes them into characters and appends them to the given StringBuilder.
-