Package com.opencloud.rhino.cmp.codecs
Interface DecoderUtils
-
public interface DecoderUtils
Utility datatype codec decoding functions.
- Since:
- Rhino 2.4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
getEncodableContext()
Get the encodable context object.SleeDatatypeDecoder
getSleeDatatypeDecoder()
Get the SLEE Datatype Decoder, a decoder of SLEE-specific datatypes that are not natively serialisable.
-
-
-
Method Detail
-
getSleeDatatypeDecoder
SleeDatatypeDecoder getSleeDatatypeDecoder()
Get the SLEE Datatype Decoder, a decoder of SLEE-specific datatypes that are not natively serialisable.
- Returns:
- the SLEE Datatype Decoder.
- Since:
- Rhino 2.4.0
-
getEncodableContext
<T> T getEncodableContext()
Get the encodable context object. This object is provided by the SBB storing the value being decoded via
RhinoSbbContext.setEncodableContext
.- Type Parameters:
T
- the type of the context object.- Returns:
- the context object, or
null
if none has been set. - Since:
- Rhino 2.4.0
-
-