OsmAnd/OsmAnd-java/src/net/osmand/StringMatcher.java

20 lines
308 B
Java
Raw Normal View History

package net.osmand;
2016-07-10 11:46:39 +02:00
/**
* Easy matcher to be able to filter streets,buildings, etc.. using custom
* rules
*
* @author pavol.zibrita
*/
public interface StringMatcher {
/**
* @param name
* @return true if this matcher matches the <code>name</code> String
*/
boolean matches(String name);
2016-07-10 11:46:39 +02:00
}