toString
String toString()
Description
Converts the CDocBuilderValue
object to a string.
Please note, that for the
.docbuilder
file theCDocBuilderValue.toString
method is not used.
Example
Java
CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
String stringValue = global.toString();
CDocBuilder.dispose();