All Types

org.apache.tuweni.bytes.AbstractBytes

An abstract Bytes value that provides implementations of #equals(Object), #hashCode() and #toString().

org.apache.tuweni.bytes.Bytes

A value made of bytes.

This interface makes no thread-safety guarantee, and a Bytes value is generally not thread safe. However, specific implementations may be thread-safe. For instance, the value returned by #copy is guaranteed to be thread-safe as it is immutable.

org.apache.tuweni.bytes.Bytes32

A Bytes value that is guaranteed to contain exactly 32 bytes.

org.apache.tuweni.bytes.Bytes48

A Bytes value that is guaranteed to contain exactly 48 bytes.

org.apache.tuweni.bytes.MutableByteBufferWrappingBytes
org.apache.tuweni.bytes.MutableBytes

A mutable Bytes value.

org.apache.tuweni.bytes.MutableBytes32

A mutable Bytes32, that is a mutable Bytes value of exactly 32 bytes.

org.apache.tuweni.bytes.MutableBytes48

A mutable Bytes48, that is a mutable Bytes value of exactly 48 bytes.