-
Notifications
You must be signed in to change notification settings - Fork 418
/
Copy pathStringBuilder.java
656 lines (597 loc) · 30 KB
/
StringBuilder.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
/*
* Copyright (c) 2012, Codename One and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Codename One designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Codename One through http://www.codenameone.com/ if you
* need additional information or have any questions.
*/
package java.lang;
/**
* A string builder implements a mutable sequence of characters. A string builder is like a String, but can be modified. At any point in time it contains some particular sequence of characters, but the length and content of the sequence can be changed through certain method calls.
* String builders are not threadsafe.
* String builders are used by the compiler to implement the binary string concatenation operator + (see <a href="https://stackoverflow.com/a/57750844">this discussion</a> for more info).
* The principal operations on a StringBuilder are the append and insert methods, which are overloaded so as to accept data of any type. Each effectively converts a given datum to a string and then appends or inserts the characters of that string to the string builder. The append method always adds these characters at the end of the builder; the insert method adds the characters at a specified point.
* For example, if z refers to a string builder object whose current contents are "start", then the method call z.append("le") would cause the string builder to contain "startle", whereas z.insert(4, "le") would alter the string builder to contain "starlet".
* In general, if sb refers to an instance of a StringBuilder, then sb.append(x) has the same effect as sb.insert(sb.length(),x).
* Every string builder has a capacity. As long as the length of the character sequence contained in the string builder does not exceed the capacity, it is not necessary to allocate a new internal builder array. If the internal builder overflows, it is automatically made larger.
* Since: JDK1.0, CLDC 1.0 See Also:ByteArrayOutputStream, String
*/
public final class StringBuilder implements CharSequence, Appendable {
static final int INITIAL_CAPACITY = 16;
private char[] value;
private int count;
//private boolean shared;
/**
* Constructs a string builder with no characters in it and an initial capacity of 16 characters.
*/
public StringBuilder(){
value = new char[INITIAL_CAPACITY];
}
/**
* Constructs a string builder with no characters in it and an initial capacity specified by the length argument.
* length - the initial capacity.
* - if the length argument is less than 0.
*/
public StringBuilder(int length){
if (length < 0) {
throw new NegativeArraySizeException(Integer.toString(length));
}
value = new char[length];
}
/**
* Constructs a string builder so that it represents the same sequence of characters as the string argument; in other words, the initial contents of the string builder is a copy of the argument string. The initial capacity of the string builder is 16 plus the length of the string argument.
* str - the initial contents of the builder.
*/
public StringBuilder(java.lang.String str){
count = str.length();
//shared = false;
value = new char[count + INITIAL_CAPACITY];
str.getChars(0, count, value, 0);
}
public StringBuilder(CharSequence str){
this(str.toString());
}
private StringIndexOutOfBoundsException failedBoundsCheck(int arrayLength, int offset, int count) {
throw new StringIndexOutOfBoundsException(count);
}
/*
* Allocates new array with characters from 'data', starting at 'offset', and with length charCount.
* Pretty much the same implementation as String(char[] data, int offset, int charCount) in ./String.java
* throws failedBundsCheck() if the new string tries to take characters outside the range of 'data'
*/
private StringBuilder(char[] data, int offset, int charCount) {
if((offset | charCount) < 0 || charCount > data.length - offset) {
throw failedBoundsCheck(data.length, offset, charCount);
}
this.value = new char[charCount];
this.count = charCount;
System.arraycopy(data, offset, value, 0, charCount);
}
private void enlargeBuffer(int min) {
int newCount = ((value.length >> 1) + value.length) + 2;
char[] newData = new char[min > newCount ? min : newCount];
System.arraycopy(value, 0, newData, 0, count);
value = newData;
//shared = false;
}
final void appendNull() {
int newCount = count + 4;
if (newCount > value.length) {
enlargeBuffer(newCount);
}
value[count++] = 'n';
value[count++] = 'u';
value[count++] = 'l';
value[count++] = 'l';
}
/**
* Appends the string representation of the boolean argument to the string builder.
* The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
*/
public java.lang.StringBuilder append(boolean b){
if(b) {
return append("true");
}
return append("false");
}
/**
* Appends the string representation of the char argument to this string builder.
* The argument is appended to the contents of this string builder. The length of this string builder increases by 1.
* The overall effect is exactly as if the argument were converted to a string by the method String.valueOf(char) and the character in that string were then appended to this StringBuilder object.
*/
public native java.lang.StringBuilder append(char c);//{
// if (count == value.length) {
// enlargeBuffer(count + 1);
// }
// value[count++] = c;
// return this;
// }
public java.lang.StringBuilder append(char[] chars){
int newCount = count + chars.length;
if (newCount > value.length) {
enlargeBuffer(newCount);
}
System.arraycopy(chars, 0, value, count, chars.length);
count = newCount;
return this;
}
/**
* Appends the string representation of a subarray of the char array argument to this string builder.
* Characters of the character array str, starting at index offset, are appended, in order, to the contents of this string builder. The length of this string builder increases by the value of len.
* The overall effect is exactly as if the arguments were converted to a string by the method String.valueOf(char[],int,int) and the characters of that string were then appended to this StringBuilder object.
*/
public java.lang.StringBuilder append(char[] chars, int offset, int length){
//Arrays.checkOffsetAndCount(chars.length, offset, length);
int newCount = count + length;
if (newCount > value.length) {
enlargeBuffer(newCount);
}
System.arraycopy(chars, offset, value, count, length);
count = newCount;
return this;
}
/**
* Appends the string representation of the double argument to this string builder.
* The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
*/
public java.lang.StringBuilder append(double d){
return append(Double.toString(d));
}
public java.lang.StringBuilder append(StringBuffer sb) {
if (sb == null) {
return append("null");
}
return append(sb.toString());
}
/**
* Appends the string representation of the float argument to this string builder.
* The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
*/
public java.lang.StringBuilder append(float f){
return append(Float.toString(f));
}
/**
* Appends the string representation of the int argument to this string builder.
* The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
*/
public java.lang.StringBuilder append(int i){
return append(Integer.toString(i));
}
/**
* Appends the string representation of the long argument to this string builder.
* The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
*/
public java.lang.StringBuilder append(long l){
return append(Long.toString(l));
}
/**
* Appends the string representation of the Object argument to this string builder.
* The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
*/
public native java.lang.StringBuilder append(java.lang.Object obj);/*{
if(obj == null) {
appendNull();
return this;
}
return append(obj.toString());
}*/
/**
* Appends the string to this string builder.
* The characters of the String argument are appended, in order, to the contents of this string builder, increasing the length of this string builder by the length of the argument. If str is null, then the four characters "null" are appended to this string builder.
* Let n be the length of the old character sequence, the one contained in the string builder just prior to execution of the append method. Then the character at index k in the new character sequence is equal to the character at index k in the old character sequence, if k is less than n; otherwise, it is equal to the character at index k-n in the argument str.
*/
public native java.lang.StringBuilder append(java.lang.String str); /*{
if (str == null) {
appendNull();
return this;
}
int length = str.length();
int newCount = count + length;
if (newCount > value.length) {
enlargeBuffer(newCount);
}
str.getChars(0, length, value, count);
count = newCount;
return this;
}*/
/**
* Returns the current capacity of the String builder. The capacity is the amount of storage available for newly inserted characters; beyond which an allocation will occur.
*/
public int capacity(){
return value.length;
}
/**
* The specified character of the sequence currently represented by the string builder, as indicated by the index argument, is returned. The first character of a string builder is at index 0, the next at index 1, and so on, for array indexing.
* The index argument must be greater than or equal to 0, and less than the length of this string builder.
*/
public native char charAt(int index);/*{
return value[index];
}*/
/**
* Removes the characters in a substring of this StringBuilder. The substring begins at the specified start and extends to the character at index end - 1 or to the end of the StringBuilder if no such character exists. If start is equal to end, no changes are made.
*/
public java.lang.StringBuilder delete(int start, int end){
if (end > count) {
end = count;
}
if (end == start) {
return this;
}
if (end > start) {
int length = count - end;
if (length >= 0) {
//if (!shared) {
System.arraycopy(value, end, value, start, length);
/*} else {
char[] newData = new char[value.length];
System.arraycopy(value, 0, newData, 0, start);
System.arraycopy(value, end, newData, start, length);
value = newData;
shared = false;
}*/
}
count -= end - start;
return this;
}
return this;
}
/**
* Removes the character at the specified position in this StringBuilder (shortening the StringBuilder by one character).
*/
public java.lang.StringBuilder deleteCharAt(int index){
int length = count - index - 1;
if (length > 0) {
//if (!shared) {
System.arraycopy(value, index + 1, value, index, length);
/*} else {
char[] newData = new char[value.length];
System.arraycopy(value, 0, newData, 0, index);
System.arraycopy(value, index + 1, newData, index, length);
value = newData;
shared = false;
}*/
}
count--;
return this;
}
/**
* Ensures that the capacity of the builder is at least equal to the specified minimum. If the current capacity of this string builder is less than the argument, then a new internal builder is allocated with greater capacity. The new capacity is the larger of: The minimumCapacity argument. Twice the old capacity, plus 2. If the minimumCapacity argument is nonpositive, this method takes no action and simply returns.
*/
public void ensureCapacity(int minimumCapacity){
if (minimumCapacity > value.length) {
int ourMin = value.length*2 + 2;
enlargeBuffer(Math.max(ourMin, minimumCapacity));
}
}
/**
* Characters are copied from this string builder into the destination character array dst. The first character to be copied is at index srcBegin; the last character to be copied is at index srcEnd-1. The total number of characters to be copied is srcEnd-srcBegin. The characters are copied into the subarray of dst starting at index dstBegin and ending at index:
* dstbegin + (srcEnd-srcBegin) - 1
*/
public native void getChars(int start, int end, char[] dst, int dstStart);/* {
System.arraycopy(value, start, dst, dstStart, end - start);
}*/
/**
* Inserts the string representation of the boolean argument into this string builder.
* The second argument is converted to a string as if by the method String.valueOf, and the characters of that string are then inserted into this string builder at the indicated offset.
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int offset, boolean b){
if(b) return insert(offset, "true");
return insert(offset, "false");
}
/**
* Inserts the string representation of the char argument into this string builder.
* The second argument is inserted into the contents of this string builder at the position indicated by offset. The length of this string builder increases by one.
* The overall effect is exactly as if the argument were converted to a string by the method String.valueOf(char) and the character in that string were then inserted into this StringBuilder object at the position indicated by offset.
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int offset, char c){
move(1, offset);
value[offset] = c;
count++;
return this;
}
private void move(int size, int index) {
int newCount;
if (value.length - count >= size) {
//if (!shared) {
// index == count case is no-op
System.arraycopy(value, index, value, index + size, count - index);
return;
/*}
newCount = value.length;*/
} else {
newCount = Math.max(count + size, value.length*2 + 2);
}
char[] newData = new char[newCount];
System.arraycopy(value, 0, newData, 0, index);
// index == count case is no-op
System.arraycopy(value, index, newData, index + size, count - index);
value = newData;
//shared = false;
}
java.lang.StringBuilder insert(int index, char[] chars){
if (chars.length != 0) {
move(chars.length, index);
System.arraycopy(chars, 0, value, index, chars.length);
count += chars.length;
}
return this;
}
/**
* Inserts the string representation of the double argument into this string builder.
* The second argument is converted to a string as if by the method String.valueOf, and the characters of that string are then inserted into this string builder at the indicated offset.
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int offset, double d){
return insert(offset, Double.toString(d));
}
/**
* Inserts the string representation of the float argument into this string builder.
* The second argument is converted to a string as if by the method String.valueOf, and the characters of that string are then inserted into this string builder at the indicated offset.
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int offset, float f){
return insert(offset, Float.toString(f));
}
/**
* Inserts the string representation of the second int argument into this string builder.
* The second argument is converted to a string as if by the method String.valueOf, and the characters of that string are then inserted into this string builder at the indicated offset.
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int offset, int i){
return insert(offset, Integer.toString(i));
}
/**
* Inserts the string representation of the long argument into this string builder.
* The second argument is converted to a string as if by the method String.valueOf, and the characters of that string are then inserted into this string builder at the position indicated by offset.
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int offset, long l){
return insert(offset, Long.toString(l));
}
/**
* Inserts the string representation of the Object argument into this string builder.
* The second argument is converted to a string as if by the method String.valueOf, and the characters of that string are then inserted into this string builder at the indicated offset.
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int offset, java.lang.Object obj){
if (obj == null) {
return insert(offset, "null");
}
return insert(offset, obj.toString());
}
/**
* Inserts the string into this string builder.
* The characters of the String argument are inserted, in order, into this string builder at the indicated offset, moving up any characters originally above that position and increasing the length of this string builder by the length of the argument. If str is null, then the four characters "null" are inserted into this string builder.
* The character at index k in the new character sequence is equal to: the character at index k in the old character sequence, if k is less than offset the character at index k-offset in the argument str, if k is not less than offset but is less than offset+str.length() the character at index k-str.length() in the old character sequence, if k is not less than offset+str.length()
* The offset argument must be greater than or equal to 0, and less than or equal to the length of this string builder.
*/
public java.lang.StringBuilder insert(int index, java.lang.String string){
if (string == null) {
string = "null";
}
int min = string.length();
if (min != 0) {
move(min, index);
string.getChars(0, min, value, index);
count += min;
}
return this;
}
/**
* Returns the length (character count) of this string builder.
*/
public int length(){
return count;
}
/**
* The character sequence contained in this string builder is replaced by the reverse of the sequence.
* Let n be the length of the old character sequence, the one contained in the string builder just prior to execution of the reverse method. Then the character at index k in the new character sequence is equal to the character at index n-k-1 in the old character sequence.
*/
public java.lang.StringBuilder reverse(){
if (count < 2) {
return this;
}
//if (!shared) {
int end = count - 1;
char frontHigh = value[0];
char endLow = value[end];
boolean allowFrontSur = true, allowEndSur = true;
for (int i = 0, mid = count / 2; i < mid; i++, --end) {
char frontLow = value[i + 1];
char endHigh = value[end - 1];
boolean surAtFront = allowFrontSur && frontLow >= 0xdc00
&& frontLow <= 0xdfff && frontHigh >= 0xd800
&& frontHigh <= 0xdbff;
if (surAtFront && (count < 3)) {
return this;
}
boolean surAtEnd = allowEndSur && endHigh >= 0xd800
&& endHigh <= 0xdbff && endLow >= 0xdc00
&& endLow <= 0xdfff;
allowFrontSur = allowEndSur = true;
if (surAtFront == surAtEnd) {
if (surAtFront) {
// both surrogates
value[end] = frontLow;
value[end - 1] = frontHigh;
value[i] = endHigh;
value[i + 1] = endLow;
frontHigh = value[i + 2];
endLow = value[end - 2];
i++;
end--;
} else {
// neither surrogates
value[end] = frontHigh;
value[i] = endLow;
frontHigh = frontLow;
endLow = endHigh;
}
} else {
if (surAtFront) {
// surrogate only at the front
value[end] = frontLow;
value[i] = endLow;
endLow = endHigh;
allowFrontSur = false;
} else {
// surrogate only at the end
value[end] = frontHigh;
value[i] = endHigh;
frontHigh = frontLow;
allowEndSur = false;
}
}
}
if ((count & 1) == 1 && (!allowFrontSur || !allowEndSur)) {
value[end] = allowFrontSur ? endLow : frontHigh;
}
/*} else {
char[] newData = new char[value.length];
for (int i = 0, end = count; i < count; i++) {
char high = value[i];
if ((i + 1) < count && high >= 0xd800 && high <= 0xdbff) {
char low = value[i + 1];
if (low >= 0xdc00 && low <= 0xdfff) {
newData[--end] = low;
i++;
}
}
newData[--end] = high;
}
value = newData;
shared = false;
}*/
return this;
}
/**
* The character at the specified index of this string builder is set to ch. The string builder is altered to represent a new character sequence that is identical to the old character sequence, except that it contains the character ch at position index.
* The offset argument must be greater than or equal to 0, and less than the length of this string builder.
*/
public void setCharAt(int index, char ch){
value[index] = ch;
}
/**
* Sets the length of this string builder. This string builder is altered to represent a new character sequence whose length is specified by the argument. For every nonnegative index
* less than newLength, the character at index
* in the new character sequence is the same as the character at index
* in the old sequence if
* is less than the length of the old character sequence; otherwise, it is the null character '\u0000'. In other words, if the newLength argument is less than the current length of the string builder, the string builder is truncated to contain exactly the number of characters given by the newLength argument.
* If the newLength argument is greater than or equal to the current length, sufficient null characters ('u0000') are appended to the string builder so that length becomes the newLength argument.
* The newLength argument must be greater than or equal to 0.
*/
public void setLength(int newLength){
if (newLength > value.length) {
enlargeBuffer(newLength);
} else {
//if (shared) {
// char[] newData = new char[value.length];
// System.arraycopy(value, 0, newData, 0, count);
// value = newData;
/*shared = false;
} else {
if (count < newLength) {
Arrays.fill(value, count, newLength, (char) 0);
}
}*/
}
count = newLength;
}
/**
* Converts to a string representing the data in this string builder. A new String object is allocated and initialized to contain the character sequence currently represented by this string builder. This String is then returned. Subsequent changes to the string builder do not affect the contents of the String.
* Implementation advice: This method can be coded so as to create a new String object without allocating new memory to hold a copy of the character sequence. Instead, the string can share the memory used by the string builder. Any subsequent operation that alters the content or capacity of the string builder must then make a copy of the internal builder at that time. This strategy is effective for reducing the amount of memory allocated by a string concatenation operation when it is implemented using a string builder.
*/
public java.lang.String toString(){
if (count == 0) {
return "";
}
// Optimize String sharing for more performance
/*int wasted = value.length - count;
if (wasted >= 256
|| (wasted >= INITIAL_CAPACITY && wasted >= (count >> 1))) {
return new String(value, 0, count);
}
shared = true;*/
return new String(value, 0, count);
}
public void trimToSize() {
// do nothing: according to the 1.5 javadoc,
// there is no garantee the builder capacity will be reduced to
// fit the actual size
}
public StringBuilder append(final java.lang.CharSequence cs) {
if (cs == null) {
return append("null");
}
return append(cs, 0, cs.length());
}
public StringBuilder append(java.lang.CharSequence s, final int start, final int end) {
if (s == null) {
s = "null";
}
int length = end - start;
int newCount = count + length;
if (newCount > value.length) {
enlargeBuffer(newCount);
}
if (s instanceof String) {
((String) s).getChars(start, end, value, count);
} else if (s instanceof StringBuilder) {
StringBuilder other = (StringBuilder) s;
System.arraycopy(other.value, start, value, count, length);
} else {
int j = count; // Destination index.
for (int i = start; i < end; i++) {
value[j++] = s.charAt(i);
}
}
this.count = newCount;
return this;
}
public StringBuilder insert(final int offset, final java.lang.CharSequence cs) {
if (cs == null) {
return insert(offset, "null");
}
return insert(offset, cs.toString());
}
public StringBuilder insert(final int offset, final CharSequence cs, final int start, final int end) {
if (cs == null) {
return insert(offset, "null", start, end);
}
return insert(offset, cs.toString(), start, end);
}
@Override
public static String substring(StringBuilder str, int from, int to)
{
int len = to-from;
char seq[] = new char[len];
for (int x = 0; x < len; x++)
{
seq[i] = str.charAt(from++);
}
return(new String(seq));
}
/*public CharSequence subSequence(int start, int end) {
return substring(start,end);
}*/
public StringBuilder substring(int start, int end) {
return new StringBuilder(value, start, end-start);
}
}