All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cactoos.iterator.IteratorOfBytes Maven / Gradle / Ivy

There is a newer version: 0.56.1
Show newest version
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2017-2022 Yegor Bugayenko
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package org.cactoos.iterator;

import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.concurrent.atomic.AtomicInteger;
import org.cactoos.Bytes;
import org.cactoos.Text;
import org.cactoos.bytes.BytesOf;
import org.cactoos.bytes.UncheckedBytes;

/**
 * Iterator that returns a set of bytes.
 *
 * 

There is no thread-safety guarantee. * * @since 0.34 */ public final class IteratorOfBytes implements Iterator { /** * The list of items to iterate. */ private final byte[] items; /** * Current position. */ private final AtomicInteger position; /** * Ctor. * @param txt Text to iterate */ public IteratorOfBytes(final Text txt) { this(new BytesOf(txt)); } /** * Ctor. * @param str String to iterate */ public IteratorOfBytes(final String str) { this(new BytesOf(str)); } /** * Ctor. * @param bytes Bytes to iterate */ public IteratorOfBytes(final Bytes bytes) { this(new UncheckedBytes(bytes).asBytes()); } /** * Ctor. * @param itms Items to iterate */ public IteratorOfBytes(final byte... itms) { this.items = itms; this.position = new AtomicInteger(0); } @Override public boolean hasNext() { return this.position.intValue() < this.items.length; } @Override public Byte next() { if (!this.hasNext()) { throw new NoSuchElementException( "The iterator doesn't have any more items" ); } return this.items[this.position.getAndIncrement()]; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy