com.infoteria.asteria.flowlibrary2.stream
クラス StreamFactoryHTML

java.lang.Object
  |
  +--com.infoteria.asteria.flowlibrary2.stream.StreamFactory
        |
        +--com.infoteria.asteria.flowlibrary2.stream.StreamFactoryText
              |
              +--com.infoteria.asteria.flowlibrary2.stream.StreamFactoryHTML

public class StreamFactoryHTML
extends StreamFactoryText

HTMLのストリームファクトリ。
StreamFactory#getTypeがStreamType.HTMLを返す場合このクラスにキャストできます。


メソッドの概要
 StreamDataObject create()
           
 StreamDataObject create(byte[] b)
           
 StreamDataObject create(byte[] b, String enc)
           
 StreamDataObject create(String str)
           
 
クラス com.infoteria.asteria.flowlibrary2.stream.StreamFactoryText から継承したメソッド
createEmptyStream, getEncoding, getLineFeed
 
クラス com.infoteria.asteria.flowlibrary2.stream.StreamFactory から継承したメソッド
create, create, getFieldDefinition, getType, setProperties
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

メソッドの詳細

create

public StreamDataObject create(byte[] b)
                        throws StreamException
クラス StreamFactory の記述:
バイト列を基にストリームを作成します。
返り値のストリームにはストリームプロパティが適用されています。
オーバーライド:
クラス StreamFactoryText 内の create

create

public StreamDataObject create()
                        throws StreamException
クラス StreamFactoryText の記述:
空のストリームを作成します。
返り値のストリームにはストリームプロパティが適用されています。
オーバーライド:
クラス StreamFactoryText 内の create

create

public StreamDataObject create(String str)
                        throws StreamException
クラス StreamFactoryText の記述:
文字列からストリームを作成します。
返り値のストリームにはストリームプロパティが適用されています。
オーバーライド:
クラス StreamFactoryText 内の create

create

public StreamDataObject create(byte[] b,
                               String enc)
                        throws StreamException
クラス StreamFactoryText の記述:
バイト列とエンコーディングを指定してストリームを作成します。
encがnullの場合AutoDetectとなります。
返り値のストリームにはストリームプロパティが適用されています。
オーバーライド:
クラス StreamFactoryText 内の create