Package com.google.refine.expr.functions

Examples of com.google.refine.expr.functions.ToString


                s = (String) o1;
            } else if (o1 == null) {
                s = "";
            } else {
                // Use our own ToString so that formatting is consistent
                ToString toString = new ToString();
                s = toString.call(bindings,new Object[] {o1});
            }
            if (o2 instanceof String) {
                String mode = ((String) o2).toLowerCase();
                if ("html".equals(mode)) {
                    return StringEscapeUtils.escapeHtml(s);
View Full Code Here

TOP

Related Classes of com.google.refine.expr.functions.ToString

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.