Package org.exist.xquery.modules.ngram.query

Examples of org.exist.xquery.modules.ngram.query.AlternativeStrings


            } else {
                if (token.startsWith("[")) {
                    Set<String> strings = new HashSet<String>(token.length() - 2);
                    for (int i = 1; i < token.length() - 1; i++)
                        strings.add(Character.toString(token.charAt(i)));
                    expressions.add(new AlternativeStrings(this, strings));
                } else {
                    expressions.add(new FixedString(this, unescape(token)));
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.exist.xquery.modules.ngram.query.AlternativeStrings

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.