List of usage examples for org.apache.lucene.util.automaton Operations run
public static boolean run(Automaton a, IntsRef s)
From source file:com.tuplejump.stargate.lucene.query.fsm.NamedCondition.java
License:Apache License
@Override public boolean matches(Tuple tuple) { String value = tuple.getValue(getAutomatonField()).toString(); return Operations.run(automaton, value); }