com.bea.wli.sb.sources
Class StringSource
java.lang.Object
   com.bea.wli.sb.sources.StringSource
com.bea.wli.sb.sources.StringSource
- All Implemented Interfaces: 
- Source
- public class StringSource 
- extends Object- implements Source
A Source that is backed by a single String.  Serialization is simply a
 character-set encoded version of the character data.
 
 
 
 
 
StringSource
public StringSource(String str)
getString
public String getString()
- 
 
- 
 
getInputStream
public InputStream getInputStream(TransformOptions options)
                           throws IOException,
                                  TransformException
- Description copied from interface: Source
- Returns streaming byte-baseed representation of the Source's content.
 The representation of that serialization is entirely up to the Source.
 Note that this method may involve an internal transformation, although
 it should not in any way change the underlying content.
 
- 
- Specified by:
- getInputStreamin interface- Source
 
- 
- Parameters:
- options- Options used to affect the serialization
- Returns:
- an InputStream for retrieving the serialized content
- Throws:
- IOException
- TransformException
 
writeTo
public void writeTo(OutputStream os,
                    TransformOptions options)
             throws IOException,
                    TransformException
- Description copied from interface: Source
- Serializes the Source's content to a byte-based stream.  The representation
 of that serialization is entirely up to the Source.  The Source is forbidden
 from closing the provided OutputStream, although it is allowed to flush it.
 However, flushing the stream should be left to the caller, if possible.
 
 Note that this method may involve an internal transformation, although it
 should not in any way change the underlying content.
 
- 
- Specified by:
- writeToin interface- Source
 
- 
- Parameters:
- os- the OutputStream to which serialized content will be written
- options- TransformOptions used to affect the serialization
- Throws:
- IOException
- TransformException
 
getInstance
public static StringSource getInstance(InputStream in,
                                       TransformOptions options)
                                throws IOException
- 
 
- 
- Throws:
- IOException