static Set tok_classifyEnglishWord(S t) { new LinkedHashSet l; if (isNoun(t)) l.add("noun"); if (isAdjective(t)) l.add("adjective"); l.addAll(ai_isAWhat(t))); ret l; }