Interface | Description |
---|---|
DatatypeCodec<T> |
Interface defining a datatype codec.
|
DecoderUtils |
Utility datatype codec decoding functions.
|
EncoderUtils |
Utility datatype codec encoding functions.
|
SleeDatatypeDecoder |
Decoder of SLEE-specific datatypes.
|
SleeDatatypeEncoder |
Encoder of SLEE-specific datatypes.
|
Class | Description |
---|---|
SimpleDatatypeCodecs |
Predefined codecs for simple Java types.
|
SimpleDatatypeCodecs.BigDecimalCodec |
Datatype codec for
BigDecimal . |
SimpleDatatypeCodecs.BigIntegerCodec |
Datatype codec for
BigInteger . |
SimpleDatatypeCodecs.BooleanCodec |
Datatype codec for
Boolean . |
SimpleDatatypeCodecs.ByteArrayCodec |
Datatype codec for
byte[] . |
SimpleDatatypeCodecs.ByteCodec |
Datatype codec for
Byte . |
SimpleDatatypeCodecs.CharacterCodec |
Datatype codec for
Character . |
SimpleDatatypeCodecs.DoubleCodec |
Datatype codec for
Double . |
SimpleDatatypeCodecs.FloatCodec |
Datatype codec for
Float . |
SimpleDatatypeCodecs.IntegerCodec |
Datatype codec for
Integer . |
SimpleDatatypeCodecs.LongCodec |
Datatype codec for
Long . |
SimpleDatatypeCodecs.ShortCodec |
Datatype codec for
Short . |
SimpleDatatypeCodecs.StringCodec |
Datatype codec for
String . |
SleeDatatypeCodecs |
Predefined codecs for SLEE datatypes.
|
SleeDatatypeCodecs.ActivityContextInterfaceCodec<T extends ActivityContextInterface> |
Datatype codec for
ActivityContextInterface and derived interfaces. |
SleeDatatypeCodecs.EventContextCodec |
Datatype codec for
EventContext . |
SleeDatatypeCodecs.ProfileLocalObjectCodec<T extends ProfileLocalObject> |
Datatype codec for
ProfileLocalObject and derived interfaces. |
SleeDatatypeCodecs.SbbLocalObjectCodec<T extends SbbLocalObject> |
Datatype codec for
SbbLocalObject and derived interfaces. |
SleeDatatypeCodecs.TimerIDCodec |
Datatype codec for
TimerID . |
Annotation Type | Description |
---|---|
DatatypeCodecType |
Annotation that can be used on a datatype class stored in CMP to indicate to Rhino a codec that should be used to serialise and deserialise objects of that type.
|
ListCodecType |
Annotation that can be used on a list-type CMP field getter or setter method to indicate to Rhino a codec that should be used to serialise and serialise list elements.
|
MapCodecType |
Annotation that can be used on a map-type CMP field getter or setter method to indicate to Rhino codecs that should be used to serialise and serialise map keys and values.
|
SetCodecType |
Annotation that can be used on a set-type CMP field getter or setter method to indicate to Rhino a codec that should be used to serialise and serialise list elements.
|