Uses of Interface
org.cactoos.Bytes
-
Packages that use Bytes Package Description org.cactoos.bytes Bytes.org.cactoos.io Input/Output.org.cactoos.iterable Iterables.org.cactoos.iterator Iterators.org.cactoos.scalar Scalars.org.cactoos.text Text. -
-
Uses of Bytes in org.cactoos.bytes
Classes in org.cactoos.bytes that implement Bytes Modifier and Type Class Description class
Base64Bytes
Decodes all origin bytes using the Base64 encoding scheme.class
BytesBase64
Encodes all origin bytes using the Base64 encoding scheme.class
BytesOf
ABytes
that encapsulates other sources of data.class
CheckedBytes<E extends Exception>
Bytes that throws exception of specified type.class
DigestEnvelope
Digest Envelope.class
EmptyBytes
Bytes with no data.class
HexOf
Decodes originText
using the hexadecimal encoding scheme.class
InputAsBytes
Input as Byte Array.class
IoCheckedBytes
Bytes that doesn't throw checkedException
, but only throwsIOException
.class
Md5DigestOf
MD5 checksum calculation ofInput
.class
NoNulls
Bytes check for no nulls.class
Sha1DigestOf
SHA-1 checksum calculation ofInput
.class
Sha256DigestOf
SHA-256 checksum calculation ofInput
.class
UncheckedBytes
Bytes that doesn't throw checkedException
.Constructors in org.cactoos.bytes with parameters of type Bytes Constructor Description Base64Bytes(Bytes origin)
Ctor uses a RFC4648Base64.Decoder
.Base64Bytes(Bytes origin, Base64.Decoder dec)
Ctor.BytesBase64(Bytes origin)
Ctor uses a RFC4648Base64.Encoder
.BytesBase64(Bytes origin, Base64.Encoder enc)
Ctor.CheckedBytes(Bytes orig, Func<? super Exception,? extends E> fnc)
Ctor.IoCheckedBytes(Bytes bts)
Ctor.IoCheckedBytes(Bytes bts, Fallback<byte[]> fbk)
Ctor.NoNulls(Bytes bytes)
Ctor.UncheckedBytes(Bytes bts)
Ctor.UncheckedBytes(Bytes bts, Fallback<byte[]> fbk)
Ctor. -
Uses of Bytes in org.cactoos.io
Constructors in org.cactoos.io with parameters of type Bytes Constructor Description InputOf(Bytes src)
Ctor.InputStreamOf(Bytes bytes)
Ctor.ReaderOf(Bytes bytes)
Ctor.TeeInput(Bytes bytes, File file)
Ctor.TeeInput(Bytes bytes, Path path)
Ctor.TeeInput(Bytes bytes, Output output)
Ctor. -
Uses of Bytes in org.cactoos.iterable
Constructors in org.cactoos.iterable with parameters of type Bytes Constructor Description IterableOfBytes(Bytes bytes)
Ctor. -
Uses of Bytes in org.cactoos.iterator
Constructors in org.cactoos.iterator with parameters of type Bytes Constructor Description IteratorOfBytes(Bytes bytes)
Ctor. -
Uses of Bytes in org.cactoos.scalar
Classes in org.cactoos.scalar with type parameters of type Bytes Modifier and Type Class Description class
Equality<T extends Bytes>
Equality. -
Uses of Bytes in org.cactoos.text
Constructors in org.cactoos.text with parameters of type Bytes Constructor Description HexOf(Bytes bytes)
Ctor.TextOf(Bytes bytes)
Ctor.TextOf(Bytes bytes, String cset)
Ctor.TextOf(Bytes bytes, Charset cset)
Ctor.
-