-
Fields Field Description org.apache.commons.lang3.StringEscapeUtils.ESCAPE_XML useStringEscapeUtils.ESCAPE_XML10
orStringEscapeUtils.ESCAPE_XML11
instead.
-
Methods Method Description org.apache.commons.lang3.ArrayUtils.isEquals(Object, Object) this method has been replaced byjava.util.Objects.deepEquals(Object, Object)
and will be removed from future releases.org.apache.commons.lang3.CharUtils.toCharacterObject(char) Java 5 introducedCharacter.valueOf(char)
which caches chars 0 through 127.org.apache.commons.lang3.exception.ExceptionUtils.getCause(Throwable) This feature will be removed in Lang 4.0org.apache.commons.lang3.exception.ExceptionUtils.getDefaultCauseMethodNames() This feature will be removed in Lang 4.0org.apache.commons.lang3.ObjectUtils.equals(Object, Object) this method has been replaced byjava.util.Objects.equals(Object, Object)
in Java 7 and will be removed from future releases.org.apache.commons.lang3.ObjectUtils.hashCode(Object) this method has been replaced byjava.util.Objects.hashCode(Object)
in Java 7 and will be removed in future releasesorg.apache.commons.lang3.ObjectUtils.hashCodeMulti(Object...) this method has been replaced byjava.util.Objects.hash(Object...)
in Java 7 and will be removed in future releases.org.apache.commons.lang3.ObjectUtils.toString(Object) this method has been replaced byjava.util.Objects.toString(Object)
in Java 7 and will be removed in future releases. Note however that said method will return "null" for null references, while this method returns and empty String. To preserve behavior usejava.util.Objects.toString(myObject, "")
org.apache.commons.lang3.StringEscapeUtils.escapeXml(String) org.apache.commons.lang3.StringUtils.chomp(String, String) This feature will be removed in Lang 4.0, useStringUtils.removeEnd(String, String)
insteadorg.apache.commons.lang3.StringUtils.toString(byte[], String) useStringUtils.toEncodedString(byte[], Charset)
instead of String constants in your code