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

com.softicar.platform.common.string.scanning.ISimpleTextMatcher Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.string.scanning;

public interface ISimpleTextMatcher {

	/**
	 * Checks the given text for a matching prefix.
	 * 

* If the given text start with a matching prefix, this method returns the * number of matching characters. * * @param text * the text to check * @return the matching length or 0 if there is no match */ int getMatchingLength(String text); /** * Consumes the matching text. * * @param text * the text to consume */ void consumeMatchingText(String text); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy