- allocate(int) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with an empty array filled zeros.
- allocate(int, byte) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with an empty array filled with given defaultValue
- and(Bytes) - Method in class at.favre.lib.bytes.Bytes
-
Bitwise AND operation on the whole internal byte array.
- and(byte[]) - Method in class at.favre.lib.bytes.Bytes
-
Bitwise AND operation on the whole internal byte array.
- append(Bytes) - Method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with the current array appended with the provided data (ie. append at the end)
- append(byte) - Method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with the current array appended with the provided data (ie. append at the end)
- append(short) - Method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with the current array appended with the provided data (ie. append at the end)
- append(int) - Method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with the current array appended with the provided data (ie. append at the end)
- append(long) - Method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with the current array appended with the provided data (ie. append at the end)
- append(byte[]) - Method in class at.favre.lib.bytes.Bytes
-
Creates a new instance with the current array appended with the provided data (ie. append at the end)
- array() - Method in class at.favre.lib.bytes.Bytes
-
The reference of te internal byte-array.
- at.favre.lib.bytes - package at.favre.lib.bytes
-
- fill(byte) - Method in class at.favre.lib.bytes.MutableBytes
-
Fills the internal byte array with provided byte
- from(byte[], int, int) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from a slice of given array
- from(byte[]...) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given array of byte arrays
- from(Collection<Byte>) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given collections.
- from(byte) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new single array element array instance from given byte
- from(byte...) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given collections of single bytes.
- from(char) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given unsigned 2 byte char.
- from(short) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given 2 byte short.
- from(int) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given 4 byte integer.
- from(long) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given 8 byte long.
- from(ByteBuffer) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given ByteBuffer.
- from(BitSet) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given BitSet.
- from(InputStream) - Static method in class at.favre.lib.bytes.Bytes
-
Reads given input stream and creates a new instance from read data
- from(String) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given utf-8 encoded string
- from(String, Charset) - Static method in class at.favre.lib.bytes.Bytes
-
Creates a new instance from given string