Package com.cognitect.transit
Interface ReadHandler<T,Rep>
-
- All Known Subinterfaces:
ArrayReadHandler<G,A,T,R>
,MapReadHandler<G,A,K,V,R>
public interface ReadHandler<T,Rep>
Converts a transit representation to an instance of a type; if type implements ArrayReadHandler or MapReadHandler to support incremental parsing of representation, that interface will be used instead
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
fromRep(Rep rep)
Converts a transit value to an instance of a type
-