-
Packages Package Description org.apache.commons.lang3.text.translate as of 3.6, use the commons-text translate package instead
-
Fields Field Description org.apache.commons.lang3.StringEscapeUtils.ESCAPE_XML useStringEscapeUtils.ESCAPE_XML10
orStringEscapeUtils.ESCAPE_XML11
instead.org.apache.commons.lang3.SystemUtils.FILE_SEPARATOR UseFile.separator
, since it is guaranteed to be a string containing a single character and it does not require a privilege check.org.apache.commons.lang3.SystemUtils.IS_JAVA_1_9 As of release 3.5, replaced bySystemUtils.IS_JAVA_9
org.apache.commons.lang3.SystemUtils.LINE_SEPARATOR UseSystem.lineSeparator()
instead, since it does not require a privilege check.org.apache.commons.lang3.SystemUtils.PATH_SEPARATOR UseFile.pathSeparator
, since it is guaranteed to be a string containing a single character and it does not require a privilege check.org.apache.commons.lang3.time.DateFormatUtils.ISO_DATE_FORMAT - as of 4.0, ISO_DATE_FORMAT will be replaced by ISO_8601_EXTENDED_DATE_FORMAT.org.apache.commons.lang3.time.DateFormatUtils.ISO_DATE_TIME_ZONE_FORMAT - as of 4.0, ISO_DATE_TIME_ZONE_FORMAT will be removed.org.apache.commons.lang3.time.DateFormatUtils.ISO_DATETIME_FORMAT - as of 4.0, ISO_DATETIME_FORMAT will be replaced by ISO_8601_EXTENDED_DATETIME_FORMAT.org.apache.commons.lang3.time.DateFormatUtils.ISO_DATETIME_TIME_ZONE_FORMAT - as of 4.0, ISO_DATETIME_TIME_ZONE_FORMAT will be replaced by ISO_8601_EXTENDED_DATETIME_TIME_ZONE_FORMAT.org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_FORMAT - as of 4.0, ISO_TIME_FORMAT will be removed.org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_NO_T_FORMAT - as of 4.0, ISO_TIME_NO_T_FORMAT will be replaced by ISO_8601_EXTENDED_TIME_FORMAT.org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_NO_T_TIME_ZONE_FORMAT - as of 4.0, ISO_TIME_NO_T_TIME_ZONE_FORMAT will be replaced by ISO_8601_EXTENDED_TIME_TIME_ZONE_FORMAT.org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_TIME_ZONE_FORMAT - as of 4.0, ISO_TIME_TIME_ZONE_FORMAT will be removed.
-
Enum Constants Enum Constant Description org.apache.commons.lang3.JavaVersion.JAVA_1_9 As of release 3.5, replaced byJavaVersion.JAVA_9