예제 #1
0
 /** 判断是否为停止词 */
 public static boolean isStopword(char[] text, int off, int len) {
   Node node = INSTANCE.getInstance().stopWords.getNode(text, off, len);
   return node != null && node.accept();
 }