Get a cheap representation of an empty string.returnAn non-null reference to an XMLString that represents "". return XString.EMPTYSTRING;
return XString.EMPTYSTRING;
Get the XMLStringFactory to pass to DTM construction.returnA never-null static reference to a String factory. return m_xstringfactory;
return m_xstringfactory;
Create a new XMLString from a Java string.paramstring Java String reference, which must be non-null.returnAn XMLString object that wraps the String reference. return new XString(string);
return new XString(string);
Create a XMLString from a FastStringBuffer.paramfsb FastStringBuffer reference, which must be non-null.paramstart The start position in the array.paramlength The number of characters to read from the array.returnAn XMLString object that wraps the FastStringBuffer reference. return new XStringForFSB(fsb, start, length);
return new XStringForFSB(fsb, start, length);
Create a XMLString from a FastStringBuffer.paramstring FastStringBuffer reference, which must be non-null.paramstart The start position in the array.paramlength The number of characters to read from the array.returnAn XMLString object that wraps the FastStringBuffer reference. return new XStringForChars(string, start, length);
return new XStringForChars(string, start, length);