doc: remove escape SQL references from javadoc (closes #303)

This commit is contained in:
Michael Vitz 2017-10-26 17:21:13 +02:00 committed by pascalschumacher
parent c1ffdbab58
commit 7a3ca8598d

View File

@ -42,11 +42,10 @@
* In addition to StringUtils, there are a series of other String manipulating classes; {@link org.apache.commons.lang3.RandomStringUtils} and {@link org.apache.commons.lang3.StringEscapeUtils StringEscapeUtils}. * In addition to StringUtils, there are a series of other String manipulating classes; {@link org.apache.commons.lang3.RandomStringUtils} and {@link org.apache.commons.lang3.StringEscapeUtils StringEscapeUtils}.
* RandomStringUtils speaks for itself. * RandomStringUtils speaks for itself.
* It's provides ways in which to generate pieces of text, such as might be used for default passwords. * It's provides ways in which to generate pieces of text, such as might be used for default passwords.
* StringEscapeUtils contains methods to escape and unescape Java, JavaScript, HTML, XML and SQL.</p> * StringEscapeUtils contains methods to escape and unescape Java, JavaScript, JSON, HTML and XML.</p>
* *
* <p>These are ideal classes to start using if you're looking to get into Lang. * <p>These are ideal classes to start using if you're looking to get into Lang.
* StringUtils' {@link org.apache.commons.lang3.StringUtils#capitalize(String)}, {@link org.apache.commons.lang3.StringUtils#substringBetween(String, String)}/{@link org.apache.commons.lang3.StringUtils#substringBefore(String, String) Before}/{@link org.apache.commons.lang3.StringUtils#substringAfter(String, String) After}, {@link org.apache.commons.lang3.StringUtils#split(String)} and {@link org.apache.commons.lang3.StringUtils#join(Object[])} are good methods to begin with. * StringUtils' {@link org.apache.commons.lang3.StringUtils#capitalize(String)}, {@link org.apache.commons.lang3.StringUtils#substringBetween(String, String)}/{@link org.apache.commons.lang3.StringUtils#substringBefore(String, String) Before}/{@link org.apache.commons.lang3.StringUtils#substringAfter(String, String) After}, {@link org.apache.commons.lang3.StringUtils#split(String)} and {@link org.apache.commons.lang3.StringUtils#join(Object[])} are good methods to begin with.</p>
* If you use java.sql.Statements a lot, StringEscapeUtils.escapeSql might be of interest.</p>
* *
* <h3>Character handling - CharSetUtils, CharSet, CharRange, CharUtils</h3> * <h3>Character handling - CharSetUtils, CharSet, CharRange, CharUtils</h3>
* *