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

net.sourceforge.plantuml.dedication.TurningBytes Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.dedication;

public class TurningBytes {

	private final byte key[];
	private int idx;

	public TurningBytes(byte key[]) {
		this.key = key;
	}

	public byte nextByte() {
		if (key.length == 0)
			return 0;

		final byte result = key[idx];
		idx++;
		if (idx >= key.length)
			idx = 0;

		return result;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy