Package com.fauna.codec.codecs
Class ClassCodec<T>
- java.lang.Object
-
- com.fauna.codec.codecs.BaseCodec<T>
-
- com.fauna.codec.codecs.ClassCodec<T>
-
-
Constructor Summary
Constructors Constructor Description ClassCodec(java.lang.Class<T> ty, CodecProvider provider)Constructs aClassCodecfor a given type, initializing field mappings based on Fauna annotations.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tdecode(UTF8FaunaParser parser)Decodes an object from the providedUTF8FaunaParser.voidencode(UTF8FaunaGenerator gen, T obj)Encodes the specified object using the providedUTF8FaunaGenerator.java.lang.Class<T>getCodecClass()Gets the class associated with this codec.FaunaType[]getSupportedTypes()Gets the set of supported Fauna data types for this codec.-
Methods inherited from class com.fauna.codec.codecs.BaseCodec
unexpectedTokenExceptionMessage, unexpectedTypeWhileDecoding, unsupportedTypeDecodingMessage, unsupportedTypeMessage
-
-
-
-
Constructor Detail
-
ClassCodec
public ClassCodec(java.lang.Class<T> ty, CodecProvider provider)
Constructs aClassCodecfor a given type, initializing field mappings based on Fauna annotations.- Parameters:
ty- The class type.provider- The codec provider for resolving codecs for field types.
-
-
Method Detail
-
decode
public T decode(UTF8FaunaParser parser) throws CodecException
Description copied from interface:CodecDecodes an object from the providedUTF8FaunaParser.- Parameters:
parser- The parser to use for reading and decoding the data.- Returns:
- The decoded object of type
T. - Throws:
CodecException- If an error occurs during decoding.
-
encode
public void encode(UTF8FaunaGenerator gen, T obj) throws CodecException
Description copied from interface:CodecEncodes the specified object using the providedUTF8FaunaGenerator.- Parameters:
gen- The generator to use for writing and encoding the data.obj- The object of typeTto encode.- Throws:
CodecException- If an error occurs during encoding.
-
getCodecClass
public java.lang.Class<T> getCodecClass()
Description copied from interface:CodecGets the class associated with this codec.- Returns:
- The
Classtype that this codec handles.
-
-