Method toString()
Return type:
java.lang.String
Member of:
java.lang.StringBuffer
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
this(value.toString());
2
write(buffer.toString());
3
append(value.toString().toCharArray());
4
myWriter.print(myIndent.toString());
5
_text.append( text.toString() );
6
keySequenceInputField.setText( text.toString() );
7
out.write(outBuf.toString());
8
((XMLPCDataElement) stack.peek()).add(sb.toString());
9
generateJavaCode(buffer.toString());
10
return new File( this.fullpath.toString() );
11
_token.setValue(_token_buffer.toString());
12
out.println( sb.toString() );
13
final String name = new StringBuffer(getName()).append(" Worker #").append(m_level++).toString();
14
this.setBase(serverRootBuffer.toString());
15
System.out.println(sb.toString());
16
System.out.println(s.toString());
17
_statusLabel.setText(sb.toString() );
18
this.writer.write(this.attrs.toString());
19
System.arraycopy(blob.toString().getBytes(), (int) pos, bytes, 0, length);
20
tokens.addElement(token.toString());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.