Methods Summary |
---|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Appendable o, int depth)Appends the string representation of the
Appendable argument to the string buffer. Does so by calling the
appendTo method of the Appendable.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Boolean o)Appends the string representation of the
Boolean argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Byte o)Appends the string representation of the
Byte argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Character o)Appends the string representation of the
Character argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Double o)Appends the string representation of the
Double argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Float o)Appends the string representation of the
Float argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Integer o)Appends the string representation of the
Integer argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Long o)Appends the string representation of the
Long argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Object o)Appends the string representation of the
Object argument to the string buffer. If o is an Appendable, this will
delegate the append to the appendTo method.
If o has a registered append mapping, then this will delegate the append
to the registered AppendConverter object.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Object o, int depth)Appends the string representation of the
Object argument to the string buffer. If o is an Appendable, this will
delegate the append to the appendTo method.
If o has a registered append mapping, then this will delegate the append
to the registered AppendConverter object.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Short o)Appends the string representation of the
Short argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.String o)Appends the string representation of the
String argument to the string buffer.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.util.Vector o)Appends a java.util.Vector to a StringBuffer.
Since Vector is an object containing other objects, the contained objects
are also appended to the StringBuffer. These appended objects are also asked
to be appended by the AppenderHelper object.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.util.Vector o, int depth)Appends a java.util.Vector to a StringBuffer.
Since Vector is an object containing other objects, the contained objects
are also appended to the StringBuffer. These appended objects are also asked
to be appended by the AppenderHelper object.
The depth parameter specifies how deep the contained objects
network should be asked to appended to the StringBuffer. A depth of 0
means just use a default representation of the object with no further
contained objects asked to rpresent themselves.
HELPER.append(s,o);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(boolean b)Appends the string representation of the
boolean argument to the string buffer.
HELPER.append(s,b);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(char[] c)Appends the string representation of the
char array argument to the string buffer.
HELPER.append(s,c);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(char[] c, int offset, int len)Appends the string representation of a subarray of the
char array argument to the string buffer.
HELPER.append(s,c,offset,len);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(char c)Appends the character to the string buffer.
HELPER.append(s,c);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(double d)Appends the string representation of the
double argument to the string buffer.
HELPER.append(s,d);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(float d)Appends the string representation of the
float argument to the string buffer.
HELPER.append(s,d);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(long i)Appends the string representation of the
long argument to the string buffer.
HELPER.append(s,i);
return this;
|
public tuning.stringconvert.StringBufferWrapper | append(java.lang.Appendable o)Appends the string representation of the
Appendable argument to the string buffer. Does so by calling the
appendTo method of the Appendable.
HELPER.append(s,o);
return this;
|