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

org.unlaxer.base.State Maven / Gradle / Ivy

package org.unlaxer.base;

import java.util.Set;

public interface State {

	Set transitions();
	boolean canTransition(S toState);
	String explain();
}