Class ByteIterators.UnmodifiableBidirectionalIterator

    • Method Detail

      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<java.lang.Byte>
      • hasPrevious

        public boolean hasPrevious()
        Description copied from interface: BidirectionalIterator
        Returns whether there is a previous element.
        Specified by:
        hasPrevious in interface BidirectionalIterator<java.lang.Byte>
        Returns:
        whether there is a previous element.
        See Also:
        ListIterator.hasPrevious()
      • nextByte

        public byte nextByte()
        Description copied from interface: ByteIterator
        Returns the next element as a primitive type.
        Specified by:
        nextByte in interface ByteIterator
        Returns:
        the next element in the iteration.
        See Also:
        Iterator.next()