Java Doc for String.java in  » Testing » KeY » java » lang » 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 » Testing » KeY » java.lang 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.lang.String

String
final public class String implements Serializable,Comparable,CharSequence(Code)


Field Summary
final public static  ComparatorCASE_INSENSITIVE_ORDER
    
final  intcount
    
final  intoffset
    
final  char[]value
    

Constructor Summary
public  String()
    
public  String(String str)
    
public  String(char[] data)
    
public  String(char[] data, int offset, int count)
    
public  String(byte[] ascii, int hibyte, int offset, int count)
    
public  String(byte[] ascii, int hibyte)
    
public  String(byte[] data, int offset, int count, String encoding)
    
public  String(byte[] data, String encoding)
    
public  String(byte[] data, int offset, int count)
    
public  String(byte[] data)
    
public  String(StringBuffer buffer)
    
 String(char[] data, int offset, int count, boolean dont_copy)
    

Method Summary
public  charcharAt(int index)
    
public  intcompareTo(String anotherString)
    
public  intcompareTo(Object o)
    
public  intcompareToIgnoreCase(String str)
    
public  Stringconcat(String str)
    
public  booleancontentEquals(StringBuffer buffer)
    
public static  StringcopyValueOf(char[] data, int offset, int count)
    
public static  StringcopyValueOf(char[] data)
    
public  booleanendsWith(String suffix)
    
public  booleanequals(Object anObject)
    
public  booleanequalsIgnoreCase(String anotherString)
    
public  voidgetBytes(int srcBegin, int srcEnd, byte dst, int dstBegin)
    
public  byte[]getBytes(String enc)
    
public  byte[]getBytes()
    
public  voidgetChars(int srcBegin, int srcEnd, char dst, int dstBegin)
    
public  inthashCode()
    
public  intindexOf(int ch)
    
public  intindexOf(int ch, int fromIndex)
    
public  intindexOf(String str)
    
public  intindexOf(String str, int fromIndex)
    
public  Stringintern()
    
public  intlastIndexOf(int ch)
    
public  intlastIndexOf(int ch, int fromIndex)
    
public  intlastIndexOf(String str)
    
public  intlastIndexOf(String str, int fromIndex)
    
public  intlength()
    
public  booleanmatches(String regex)
    
public  booleanregionMatches(int toffset, String other, int ooffset, int len)
    
public  booleanregionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
    
public  Stringreplace(char oldChar, char newChar)
    
public  StringreplaceAll(String regex, String replacement)
    
public  StringreplaceFirst(String regex, String replacement)
    
public  String[]split(String regex, int limit)
    
public  String[]split(String regex)
    
public  booleanstartsWith(String prefix, int toffset)
    
public  booleanstartsWith(String prefix)
    
public  CharSequencesubSequence(int begin, int end)
    
public  Stringsubstring(int begin)
    
public  Stringsubstring(int beginIndex, int endIndex)
    
public  char[]toCharArray()
    
public  StringtoLowerCase(Locale loc)
    
public  StringtoLowerCase()
    
public  StringtoString()
    
public  StringtoUpperCase(Locale loc)
    
public  StringtoUpperCase()
    
public  Stringtrim()
    
public static  StringvalueOf(Object obj)
    
public static  StringvalueOf(char[] data)
    
public static  StringvalueOf(char[] data, int offset, int count)
    
public static  StringvalueOf(boolean b)
    
public static  StringvalueOf(char c)
    
public static  StringvalueOf(int i)
    
public static  StringvalueOf(long l)
    
public static  StringvalueOf(float f)
    
public static  StringvalueOf(double d)
    
static  char[]zeroBasedStringValue(String s)
    

Field Detail
CASE_INSENSITIVE_ORDER
final public static Comparator CASE_INSENSITIVE_ORDER(Code)



count
final int count(Code)



offset
final int offset(Code)



value
final char[] value(Code)




Constructor Detail
String
public String()(Code)



String
public String(String str)(Code)



String
public String(char[] data)(Code)



String
public String(char[] data, int offset, int count)(Code)



String
public String(byte[] ascii, int hibyte, int offset, int count)(Code)



String
public String(byte[] ascii, int hibyte)(Code)



String
public String(byte[] data, int offset, int count, String encoding) throws UnsupportedEncodingException(Code)



String
public String(byte[] data, String encoding) throws UnsupportedEncodingException(Code)



String
public String(byte[] data, int offset, int count)(Code)



String
public String(byte[] data)(Code)



String
public String(StringBuffer buffer)(Code)



String
String(char[] data, int offset, int count, boolean dont_copy)(Code)




Method Detail
charAt
public char charAt(int index)(Code)



compareTo
public int compareTo(String anotherString)(Code)



compareTo
public int compareTo(Object o)(Code)



compareToIgnoreCase
public int compareToIgnoreCase(String str)(Code)



concat
public String concat(String str)(Code)



contentEquals
public boolean contentEquals(StringBuffer buffer)(Code)



copyValueOf
public static String copyValueOf(char[] data, int offset, int count)(Code)



copyValueOf
public static String copyValueOf(char[] data)(Code)



endsWith
public boolean endsWith(String suffix)(Code)



equals
public boolean equals(Object anObject)(Code)



equalsIgnoreCase
public boolean equalsIgnoreCase(String anotherString)(Code)



getBytes
public void getBytes(int srcBegin, int srcEnd, byte dst, int dstBegin)(Code)



getBytes
public byte[] getBytes(String enc) throws UnsupportedEncodingException(Code)



getBytes
public byte[] getBytes()(Code)



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



hashCode
public int hashCode()(Code)



indexOf
public int indexOf(int ch)(Code)



indexOf
public int indexOf(int ch, int fromIndex)(Code)



indexOf
public int indexOf(String str)(Code)



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



intern
public String intern()(Code)



lastIndexOf
public int lastIndexOf(int ch)(Code)



lastIndexOf
public int lastIndexOf(int ch, int fromIndex)(Code)



lastIndexOf
public int lastIndexOf(String str)(Code)



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



length
public int length()(Code)



matches
public boolean matches(String regex)(Code)



regionMatches
public boolean regionMatches(int toffset, String other, int ooffset, int len)(Code)



regionMatches
public boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)(Code)



replace
public String replace(char oldChar, char newChar)(Code)



replaceAll
public String replaceAll(String regex, String replacement)(Code)



replaceFirst
public String replaceFirst(String regex, String replacement)(Code)



split
public String[] split(String regex, int limit)(Code)



split
public String[] split(String regex)(Code)



startsWith
public boolean startsWith(String prefix, int toffset)(Code)



startsWith
public boolean startsWith(String prefix)(Code)



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



substring
public String substring(int begin)(Code)



substring
public String substring(int beginIndex, int endIndex)(Code)



toCharArray
public char[] toCharArray()(Code)



toLowerCase
public String toLowerCase(Locale loc)(Code)



toLowerCase
public String toLowerCase()(Code)



toString
public String toString()(Code)



toUpperCase
public String toUpperCase(Locale loc)(Code)



toUpperCase
public String toUpperCase()(Code)



trim
public String trim()(Code)



valueOf
public static String valueOf(Object obj)(Code)



valueOf
public static String valueOf(char[] data)(Code)



valueOf
public static String valueOf(char[] data, int offset, int count)(Code)



valueOf
public static String valueOf(boolean b)(Code)



valueOf
public static String valueOf(char c)(Code)



valueOf
public static String valueOf(int i)(Code)



valueOf
public static String valueOf(long l)(Code)



valueOf
public static String valueOf(float f)(Code)



valueOf
public static String valueOf(double d)(Code)



zeroBasedStringValue
static char[] zeroBasedStringValue(String s)(Code)



Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify() throws IllegalMonitorStateException(Code)(Java Doc)
final public void notifyAll() throws IllegalMonitorStateException(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait() throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)
final public void wait(long ms) throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)
final public void wait(long ms, int ns) throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)

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