All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.grakn.util.StringUtil Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
/*
 * GRAKN.AI - THE KNOWLEDGE GRAPH
 * Copyright (C) 2018 Grakn Labs Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */
package ai.grakn.util;

import org.apache.commons.lang.StringEscapeUtils;

import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;

/**
 * 

* Some helper methods in dealing with strings in the context of GRAKN. *

* * @author borislav * */ public class StringUtil { /** * @param string the string to unescape * @return the unescaped string, replacing any backslash escapes with the real characters */ public static String unescapeString(String string) { return StringEscapeUtils.unescapeJavaScript(string); } /** * @param string the string to escape * @return the escaped string, replacing any escapable characters with backslashes */ public static String escapeString(String string) { return StringEscapeUtils.escapeJavaScript(string); } /** * @param string a string to quote and escape * @return a string, surrounded with double quotes and escaped */ public static String quoteString(String string) { return "\"" + StringUtil.escapeString(string) + "\""; } /** * @param value a value in the graph * @return the string representation of the value (using quotes if it is already a string) */ public static String valueToString(Object value) { if (value instanceof String) { return quoteString((String) value); } else if (value instanceof Double) { DecimalFormat df = new DecimalFormat("#", DecimalFormatSymbols.getInstance(Locale.ENGLISH)); df.setMinimumFractionDigits(1); df.setMaximumFractionDigits(12); df.setMinimumIntegerDigits(1); return df.format(value); } else { return value.toString(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy