JDK-4812591 : StringBuffer needs append(CharSequence)
  • Type: Enhancement
  • Component: core-libs
  • Sub-Component: java.lang
  • Affected Version: 1.4.1,1.4.2
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: windows_2000,windows_xp
  • CPU: x86
  • Submitted: 2003-02-04
  • Updated: 2017-05-16
  • Resolved: 2003-05-16
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
5.0 tigerFixed
Related Reports
Duplicate :  
Description

Name: rmT116609			Date: 02/04/2003


DESCRIPTION OF THE PROBLEM :
The StringBuffer class needs an append method that takes a CharSequence.  That way if one has a CharSequence (such as a CharBuffer) there is no need to create a String object to append to the StringBuffer.


(Review ID: 180807) 
======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: tiger FIXED IN: tiger INTEGRATED IN: tiger tiger-b07
14-06-2004

EVALUATION Name: nl37777 Date: 02/04/2003 StringBuffer.append methods that accept CharSequence are being considered as part of one approach to supporting supplementary Unicode characters (JSR 204). ====================================================================== Proposed addtion is: public StringBuffer append(CharSequence s) public StringBuffer append(CharSequence s, int index, int len) public StringBuffer insert(int offset, CharSequence s) public StringBuffer insert(int offset, CharSequence s, int index, int len) ###@###.### 2003-02-14 Approved for Tiger. ###@###.### 2003-04-23 Name: nl37777 Date: 04/13/2004 The new methods were changed to use start/end convention instead of start/length. See 5019111. ======================================================================
11-06-2004