Package org.apache.nemo.common.coder
Class BytesDecoderFactory
- java.lang.Object
-
- org.apache.nemo.common.coder.BytesDecoderFactory
-
- All Implemented Interfaces:
java.io.Serializable
,DecoderFactory<byte[]>
public final class BytesDecoderFactory extends java.lang.Object implements DecoderFactory<byte[]>
ADecoderFactory
which is used for an array of bytes.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.nemo.common.coder.DecoderFactory
DecoderFactory.Decoder<T>, DecoderFactory.DummyDecoderFactory
-
-
Field Summary
-
Fields inherited from interface org.apache.nemo.common.coder.DecoderFactory
DUMMY_DECODER_FACTORY
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DecoderFactory.Decoder<byte[]>
create(java.io.InputStream inputStream)
Get a decoder instance.static BytesDecoderFactory
of()
Static initializer of the decoder.java.lang.String
toString()
-
-
-
Method Detail
-
of
public static BytesDecoderFactory of()
Static initializer of the decoder.- Returns:
- the initializer.
-
create
public DecoderFactory.Decoder<byte[]> create(java.io.InputStream inputStream)
Description copied from interface:DecoderFactory
Get a decoder instance.- Specified by:
create
in interfaceDecoderFactory<byte[]>
- Parameters:
inputStream
- the input stream to decode.- Returns:
- the decoder instance.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-