Package com.opencloud.rhino.cmp.codecs
Interface EncoderUtils
-
public interface EncoderUtils
Utility datatype codec encoding 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.SleeDatatypeEncoder
getSleeDatatypeEncoder()
Get the SLEE Datatype Encoder, an encoder of SLEE-specific datatypes that are not natively serialisable.
-
-
-
Method Detail
-
getSleeDatatypeEncoder
SleeDatatypeEncoder getSleeDatatypeEncoder()
Get the SLEE Datatype Encoder, an encoder of SLEE-specific datatypes that are not natively serialisable.
- Returns:
- the SLEE Datatype Encoder.
- 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 encoded 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
-
-