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

net.sourceforge.plantuml.utils.InspectorUtils 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.utils;

import java.util.List;

public abstract class InspectorUtils {
	// ::remove file when __HAXE__

	private InspectorUtils() {

	}

	public static  Inspector inspector(final List list) {
		return new Inspector() {

			private int pos = 0;

			@Override
			public O peek(int ahead) {
				final int tmp = pos + ahead;
				if (tmp < list.size())
					return list.get(tmp);
				return null;
			}

			@Override
			public void jump() {
				pos++;
			}
		};
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy