URL.openConnection()
instead.
Please visit this webpage
for further details.@Deprecated
public interface Encoder
Provides the highest level of abstraction for Encoders.
This is the sister interface of Decoder
. Every implementation of
Encoder provides this common generic interface whic allows a user to pass a
generic Object to any Encoder implementation in the codec package.
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
encode(java.lang.Object pObject)
Deprecated.
Encodes an "Object" and returns the encoded content
as an Object.
|
java.lang.Object encode(java.lang.Object pObject) throws EncoderException
byte[]
or String
s depending on the implementation used.pObject
- An object ot encodeEncoderException
- an encoder exception is
thrown if the encoder experiences a failure
condition during the encoding process.