tuweni / org.apache.tuweni.bytes

Package org.apache.tuweni.bytes

Types

AbstractBytes

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

abstract class AbstractBytes : Bytes

Bytes

A value made of bytes.

interface Bytes : Comparable<Bytes!>

Bytes32

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

interface Bytes32 : Bytes

Bytes48

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

interface Bytes48 : Bytes

DelegatingBytes

A class that holds and delegates all operations to its inner bytes field.

open class DelegatingBytes : AbstractBytes, Bytes

DelegatingBytes32

A class that holds and delegates all operations to its inner bytes field.

open class DelegatingBytes32 : DelegatingBytes, Bytes32

DelegatingBytes48

A class that holds and delegates all operations to its inner bytes field.

open class DelegatingBytes48 : DelegatingBytes, Bytes48

DelegatingMutableBytes

A class that holds and delegates all operations to its inner bytes field.

open class DelegatingMutableBytes : MutableBytes

MutableByteBufferWrappingBytes

open class MutableByteBufferWrappingBytes : ByteBufferWrappingBytes, MutableBytes

MutableBytes

A mutable Bytes value.

interface MutableBytes : Bytes

MutableBytes32

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

interface MutableBytes32 : MutableBytes, Bytes32

MutableBytes48

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

interface MutableBytes48 : MutableBytes, Bytes48