Class ByteString$
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ByteString$Static reference to the singleton instance of this Scala object. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply(byte[] bytes) Creates a new ByteString by copying a byte array.Creates a new ByteString by encoding a String as UTF-8.Creates a new ByteString by encoding a String with a charset.Creates a new ByteString by encoding a String with a charset.apply(ByteBuffer bytes) Creates a new ByteString by copying bytes from a ByteBuffer.Creates a new ByteString by copying bytes.<T> ByteStringapply(scala.collection.immutable.Seq<T> bytes, scala.math.Integral<T> num) Creates a new ByteString by converting from integral numbers to bytes.Creates a new ByteString by iterating over bytes.Java APIempty()Java APIfromArray(byte[] array) Creates a new ByteString by copying a byte array.fromArray(byte[] array, int offset, int length) Creates a new ByteString by copying length bytes starting at offset from an Array.fromArrayUnsafe(byte[] array) Unsafe API: Use only in situations you are completely confident that this is what you need, and that you understand the implications documented below.fromArrayUnsafe(byte[] array, int offset, int length) Unsafe API: Use only in situations you are completely confident that this is what you need, and that you understand the implications documented below.fromByteBuffer(ByteBuffer buffer) Creates a new ByteString by copying bytes out of a ByteBuffer.fromInts(int... array) JAVA API Creates a new ByteString by copying an int array by converting from integral numbers to bytes.JAVA API Creates a new ByteString by copying an int array by converting from integral numbers to bytes.fromString(String string) Creates a new ByteString which will contain the UTF-8 representation of the given StringfromString(String string, String charset) Creates a new ByteString which will contain the representation of the given String in the given charsetfromString(String string, Charset charset) Creates a new ByteString which will contain the representation of the given String in the given charsetUTF_8()Standard "UTF-8" charset
-
Field Details
-
MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Constructor Details
-
ByteString$
public ByteString$()
-
-
Method Details
-
fromInts
JAVA API Creates a new ByteString by copying an int array by converting from integral numbers to bytes. -
apply
Creates a new ByteString by copying a byte array. -
apply
Creates a new ByteString by copying bytes. -
apply
Creates a new ByteString by iterating over bytes. -
apply
Creates a new ByteString by converting from integral numbers to bytes. -
apply
Creates a new ByteString by copying bytes from a ByteBuffer. -
apply
Creates a new ByteString by encoding a String as UTF-8. -
apply
Creates a new ByteString by encoding a String with a charset. -
apply
Creates a new ByteString by encoding a String with a charset. -
fromArray
Creates a new ByteString by copying a byte array. -
fromArrayUnsafe
Unsafe API: Use only in situations you are completely confident that this is what you need, and that you understand the implications documented below.Creates a ByteString without copying the passed in byte array, unlike other factory methods defined on ByteString. This method of creating a ByteString saves one array copy and allocation and therefore can lead to better performance, however it also means that one MUST NOT modify the passed in array, or unexpected immutable data structure contract-breaking behavior will manifest itself.
This API is intended for users who have obtained an byte array from some other API, and want wrap it into an ByteArray, and from there on only use that reference (the ByteString) to operate on the wrapped data. For all other intents and purposes, please use the usual apply and create methods - which provide the immutability guarantees by copying the array.
-
fromArray
Creates a new ByteString by copying length bytes starting at offset from an Array. -
fromArrayUnsafe
Unsafe API: Use only in situations you are completely confident that this is what you need, and that you understand the implications documented below.Creates a ByteString without copying the passed in byte array, unlike other factory methods defined on ByteString. This method of creating a ByteString saves one array copy and allocation and therefore can lead to better performance, however it also means that one MUST NOT modify the passed in array, or unexpected immutable data structure contract-breaking behavior will manifest itself.
This API is intended for users who have obtained an byte array from some other API, and want wrap it into an ByteArray, and from there on only use that reference (the ByteString) to operate on the wrapped data. For all other intents and purposes, please use the usual apply and create methods - which provide the immutability guarantees by copying the array.
-
fromInts
JAVA API Creates a new ByteString by copying an int array by converting from integral numbers to bytes. -
fromString
Creates a new ByteString which will contain the UTF-8 representation of the given String -
fromString
Creates a new ByteString which will contain the representation of the given String in the given charset -
fromString
Creates a new ByteString which will contain the representation of the given String in the given charset -
UTF_8
Standard "UTF-8" charset -
fromByteBuffer
Creates a new ByteString by copying bytes out of a ByteBuffer. -
empty
-
emptyByteString
Java API -
newBuilder
-
createBuilder
Java API
-