Source Code Cross Referenced 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 Referenced  Class Diagram Java Document (Java Doc) 


001:        package java.lang;
002:
003:        import java.io.CharConversionException;
004:        import java.io.Serializable;
005:        import java.io.UnsupportedEncodingException;
006:        import java.util.Comparator;
007:        import java.util.Locale;
008:        import java.util.regex.Pattern;
009:
010:        public final class String implements  Serializable, Comparable,
011:                CharSequence {
012:            final char[] value;
013:            final int count;
014:            final int offset;
015:
016:            private static final class CaseInsensitiveComparator implements 
017:                    Comparator, Serializable {
018:                CaseInsensitiveComparator() {
019:                }
020:
021:                public int compare(Object o1, Object o2) {
022:                }
023:            }
024:
025:            public static final Comparator CASE_INSENSITIVE_ORDER = new CaseInsensitiveComparator();
026:
027:            public String() {
028:            }
029:
030:            public String(String str) {
031:            }
032:
033:            public String(char[] data) {
034:            }
035:
036:            public String(char[] data, int offset, int count) {
037:            }
038:
039:            public String(byte[] ascii, int hibyte, int offset, int count) {
040:            }
041:
042:            public String(byte[] ascii, int hibyte) {
043:            }
044:
045:            public String(byte[] data, int offset, int count, String encoding)
046:                    throws UnsupportedEncodingException {
047:            }
048:
049:            public String(byte[] data, String encoding)
050:                    throws UnsupportedEncodingException {
051:            }
052:
053:            public String(byte[] data, int offset, int count) {
054:            }
055:
056:            public String(byte[] data) {
057:            }
058:
059:            public String(StringBuffer buffer) {
060:            }
061:
062:            String(char[] data, int offset, int count, boolean dont_copy) {
063:            }
064:
065:            public int length() {
066:            }
067:
068:            public char charAt(int index) {
069:            }
070:
071:            public void getChars(int srcBegin, int srcEnd, char dst[],
072:                    int dstBegin) {
073:            }
074:
075:            public void getBytes(int srcBegin, int srcEnd, byte dst[],
076:                    int dstBegin) {
077:            }
078:
079:            public byte[] getBytes(String enc)
080:                    throws UnsupportedEncodingException {
081:            }
082:
083:            public byte[] getBytes() {
084:            }
085:
086:            public boolean equals(Object anObject) {
087:            }
088:
089:            public boolean contentEquals(StringBuffer buffer) {
090:            }
091:
092:            public boolean equalsIgnoreCase(String anotherString) {
093:            }
094:
095:            public int compareTo(String anotherString) {
096:            }
097:
098:            public int compareTo(Object o) {
099:            }
100:
101:            public int compareToIgnoreCase(String str) {
102:            }
103:
104:            public boolean regionMatches(int toffset, String other,
105:                    int ooffset, int len) {
106:            }
107:
108:            public boolean regionMatches(boolean ignoreCase, int toffset,
109:                    String other, int ooffset, int len) {
110:            }
111:
112:            public boolean startsWith(String prefix, int toffset) {
113:            }
114:
115:            public boolean startsWith(String prefix) {
116:            }
117:
118:            public boolean endsWith(String suffix) {
119:            }
120:
121:            public int hashCode() {
122:            }
123:
124:            public int indexOf(int ch) {
125:            }
126:
127:            public int indexOf(int ch, int fromIndex) {
128:            }
129:
130:            public int lastIndexOf(int ch) {
131:            }
132:
133:            public int lastIndexOf(int ch, int fromIndex) {
134:            }
135:
136:            public int indexOf(String str) {
137:            }
138:
139:            public int indexOf(String str, int fromIndex) {
140:            }
141:
142:            public int lastIndexOf(String str) {
143:            }
144:
145:            public int lastIndexOf(String str, int fromIndex) {
146:            }
147:
148:            public String substring(int begin) {
149:            }
150:
151:            public String substring(int beginIndex, int endIndex) {
152:            }
153:
154:            public CharSequence subSequence(int begin, int end) {
155:            }
156:
157:            public String concat(String str) {
158:            }
159:
160:            public String replace(char oldChar, char newChar) {
161:            }
162:
163:            public boolean matches(String regex) {
164:            }
165:
166:            public String replaceFirst(String regex, String replacement) {
167:            }
168:
169:            public String replaceAll(String regex, String replacement) {
170:            }
171:
172:            public String[] split(String regex, int limit) {
173:            }
174:
175:            public String[] split(String regex) {
176:            }
177:
178:            public String toLowerCase(Locale loc) {
179:            }
180:
181:            public String toLowerCase() {
182:            }
183:
184:            public String toUpperCase(Locale loc) {
185:            }
186:
187:            public String toUpperCase() {
188:            }
189:
190:            public String trim() {
191:            }
192:
193:            public String toString() {
194:            }
195:
196:            public char[] toCharArray() {
197:            }
198:
199:            public static String valueOf(Object obj) {
200:            }
201:
202:            public static String valueOf(char[] data) {
203:            }
204:
205:            public static String valueOf(char[] data, int offset, int count) {
206:            }
207:
208:            public static String copyValueOf(char[] data, int offset, int count) {
209:            }
210:
211:            public static String copyValueOf(char[] data) {
212:            }
213:
214:            public static String valueOf(boolean b) {
215:            }
216:
217:            public static String valueOf(char c) {
218:            }
219:
220:            public static String valueOf(int i) {
221:            }
222:
223:            public static String valueOf(long l) {
224:            }
225:
226:            public static String valueOf(float f) {
227:            }
228:
229:            public static String valueOf(double d) {
230:            }
231:
232:            public String intern() {
233:            }
234:
235:            private static int upperCaseExpansion(char ch) {
236:            }
237:
238:            private static int upperCaseIndex(char ch) {
239:            }
240:
241:            static char[] zeroBasedStringValue(String s) {
242:            }
243:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.