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

net.sourceforge.plantuml.regex.MatcherIterator 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.regex;

import java.util.Iterator;

public class MatcherIterator implements Iterator {

	private int cpt = 1;
	private final Matcher2 matcher;

	MatcherIterator(Matcher2 matcher) {
		this.matcher = matcher;
	}

	public boolean hasNext() {
		return cpt <= matcher.groupCount();
	}

	public String next() {
		return matcher.group(cpt++);
	}

	public void remove() {
		throw new UnsupportedOperationException();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy