Interface UncheckedSerializer<P,I,X extends RuntimeException>
-
- Type Parameters:
P
- Product typeI
- Input typeX
- Error exception type
- All Superinterfaces:
Deserializer<P,I,X>
- All Known Subinterfaces:
BinaryCodec<T>
,BitsCodec<T>
,BooleanCodec<T>
,DataStringCodec<T>
,DecimalCodec<T>
,EmptyCodec<T>
,EnumCodec<T>
,IdentityrefCodec<T>
,IllegalArgumentCodec<P,I>
,InstanceIdentifierCodec<T>
,Int16Codec<T>
,Int32Codec<T>
,Int64Codec<T>
,Int8Codec<T>
,LeafrefCodec<T>
,StringCodec<T>
,Uint16Codec<T>
,Uint32Codec<T>
,Uint64Codec<T>
,Uint8Codec<T>
,UncheckedCodec<P,I,X>
,UnionCodec<T>
- All Known Implementing Classes:
AbstractDataStringCodec
,AbstractIllegalArgumentCodec
,AbstractIntegerStringCodec
,AbstractModuleStringIdentityrefCodec
,AbstractModuleStringInstanceIdentifierCodec
,AbstractStringIdentityrefCodec
,AbstractStringInstanceIdentifierCodec
,AbstractStringUnionCodec
,AbstractUncheckedCodec
,BinaryStringCodec
,BitsStringCodec
,BooleanStringCodec
,DecimalStringCodec
,EnumStringCodec
,ModuleStringIdentityrefCodec
,StringStringCodec
,TypeDefinitionAwareCodec
@Beta public interface UncheckedSerializer<P,I,X extends RuntimeException> extends Deserializer<P,I,X>
A specialization ofDeserializer
, which is guaranteed to throws unchecked exceptions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description P
deserialize(I input)
Produce an object base on input.
-
-
-
Method Detail
-
deserialize
P deserialize(I input)
Description copied from interface:Deserializer
Produce an object base on input.- Specified by:
deserialize
in interfaceDeserializer<P,I,X extends RuntimeException>
- Parameters:
input
- Input object- Returns:
- Product derived from input
-
-