Property | Type | Description | |
---|---|---|---|
buf | char[] | ||
cache | String | ||
count | int |
Method | Description | |
---|---|---|
Append ( String str ) : void |
This will add a
|
|
Append ( String str, int off, int len ) : void |
This will add a
|
|
Append ( |
This will add a
|
|
Append ( |
This will add a
|
|
Append ( char c ) : void |
This will add a
|
|
Append ( char c, int off, int len ) : void |
This will add a
|
|
Clear ( ) : void |
This will empty the
|
|
EnsureCapacity ( int min ) : void |
This ensure that there is enough space in the buffer to allow for more characters to be added. If the buffer is already larger than min then the buffer will not be expanded at all.
|
|
Length ( ) : int |
This will return the number of bytes that have been appended to the
|
|
Template ( ) : System |
Constructor for
|
|
Template ( int size ) : System |
This creates a
|
|
ToString ( ) : String |
This will return the characters that have been appended to the
|
public Append ( String str ) : void | ||
str | String |
/// the |
return | void |
public Append ( String str, int off, int len ) : void | ||
str | String |
/// the |
off | int |
/// the read offset for the |
len | int | /// the number of characters to append to this /// |
return | void |
public Append ( |
||
text |
/// the |
|
return | void |
public Append ( |
||
text |
/// the |
|
off | int |
/// the read offset for the |
len | int | /// the number of characters to append to this /// |
return | void |
public Append ( char c ) : void | ||
c | char |
/// the |
return | void |
public Append ( char c, int off, int len ) : void | ||
c | char |
/// the |
off | int | /// the read offset for the array /// |
len | int | /// the number of characters to append to this /// |
return | void |
public EnsureCapacity ( int min ) : void | ||
min | int | /// the minimum size needed for this buffer /// |
return | void |
public Template ( int size ) : System | ||
size | int |
/// initial size of this |
return | System |