Java Doc for StringBuddy.java in  » Net » Terracotta » com » tctest » stringbuffer » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » Terracotta » com.tctest.stringbuffer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.tctest.stringbuffer.StringBuddy

All known Subclasses:   com.tctest.stringbuffer.StringBuilderBuddy,  com.tctest.stringbuffer.StringBufferBuddy,
StringBuddy
public interface StringBuddy (Code)




Method Summary
 Objectappend(boolean b)
    
 Objectappend(char c)
    
 Objectappend(char[] str, int offset, int len)
    
 Objectappend(char[] str)
    
 Objectappend(CharSequence s, int start, int end)
    
 Objectappend(CharSequence s)
    
 Objectappend(double d)
    
 Objectappend(float f)
    
 Objectappend(int i)
    
 Objectappend(long lng)
    
 Objectappend(String str)
    
 Objectappend(Object sb)
    
 ObjectappendCodePoint(int codePoint)
    
public  intcapacity()
    
public  charcharAt(int index)
    
public  intcodePointAt(int index)
    
public  intcodePointBefore(int index)
    
public  intcodePointCount(int beginIndex, int endIndex)
    
 Objectdelete(int start, int end)
    
 ObjectdeleteCharAt(int index)
    
public  voidensureCapacity(int minimumCapacity)
    
public  voidgetChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
    
public  intindexOf(String str, int fromIndex)
    
public  intindexOf(String str)
    
 Objectinsert(int offset, boolean b)
    
 Objectinsert(int offset, char c)
    
 Objectinsert(int index, char[] str, int offset, int len)
    
 Objectinsert(int offset, char[] str)
    
 Objectinsert(int dstOffset, CharSequence s, int start, int end)
    
 Objectinsert(int dstOffset, CharSequence s)
    
 Objectinsert(int offset, double d)
    
 Objectinsert(int offset, float f)
    
 Objectinsert(int offset, int i)
    
 Objectinsert(int offset, long l)
    
 Objectinsert(int offset, Object obj)
    
 Objectinsert(int offset, String str)
    
public  intlastIndexOf(String str, int fromIndex)
    
public  intlastIndexOf(String str)
    
public  intlength()
    
public  intoffsetByCodePoints(int index, int codePointOffset)
    
 Objectreplace(int start, int end, String str)
    
 Objectreverse()
    
public  voidsetCharAt(int index, char ch)
    
public  voidsetLength(int newLength)
    
public  CharSequencesubSequence(int start, int end)
    
public  Stringsubstring(int start, int end)
    
public  Stringsubstring(int start)
    
public  voidtrimToSize()
    



Method Detail
append
Object append(boolean b)(Code)



append
Object append(char c)(Code)



append
Object append(char[] str, int offset, int len)(Code)



append
Object append(char[] str)(Code)



append
Object append(CharSequence s, int start, int end)(Code)



append
Object append(CharSequence s)(Code)



append
Object append(double d)(Code)



append
Object append(float f)(Code)



append
Object append(int i)(Code)



append
Object append(long lng)(Code)



append
Object append(String str)(Code)



append
Object append(Object sb)(Code)



appendCodePoint
Object appendCodePoint(int codePoint)(Code)



capacity
public int capacity()(Code)



charAt
public char charAt(int index)(Code)



codePointAt
public int codePointAt(int index)(Code)



codePointBefore
public int codePointBefore(int index)(Code)



codePointCount
public int codePointCount(int beginIndex, int endIndex)(Code)



delete
Object delete(int start, int end)(Code)



deleteCharAt
Object deleteCharAt(int index)(Code)



ensureCapacity
public void ensureCapacity(int minimumCapacity)(Code)



getChars
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)(Code)



indexOf
public int indexOf(String str, int fromIndex)(Code)



indexOf
public int indexOf(String str)(Code)



insert
Object insert(int offset, boolean b)(Code)



insert
Object insert(int offset, char c)(Code)



insert
Object insert(int index, char[] str, int offset, int len)(Code)



insert
Object insert(int offset, char[] str)(Code)



insert
Object insert(int dstOffset, CharSequence s, int start, int end)(Code)



insert
Object insert(int dstOffset, CharSequence s)(Code)



insert
Object insert(int offset, double d)(Code)



insert
Object insert(int offset, float f)(Code)



insert
Object insert(int offset, int i)(Code)



insert
Object insert(int offset, long l)(Code)



insert
Object insert(int offset, Object obj)(Code)



insert
Object insert(int offset, String str)(Code)



lastIndexOf
public int lastIndexOf(String str, int fromIndex)(Code)



lastIndexOf
public int lastIndexOf(String str)(Code)



length
public int length()(Code)



offsetByCodePoints
public int offsetByCodePoints(int index, int codePointOffset)(Code)



replace
Object replace(int start, int end, String str)(Code)



reverse
Object reverse()(Code)



setCharAt
public void setCharAt(int index, char ch)(Code)



setLength
public void setLength(int newLength)(Code)



subSequence
public CharSequence subSequence(int start, int end)(Code)



substring
public String substring(int start, int end)(Code)



substring
public String substring(int start)(Code)



trimToSize
public void trimToSize()(Code)



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.