Package com.fauna.codec.codecs
Class InstantCodec
- java.lang.Object
-
- com.fauna.codec.codecs.BaseCodec<java.time.Instant>
-
- com.fauna.codec.codecs.InstantCodec
-
-
Field Summary
Fields Modifier and Type Field Description static InstantCodec
SINGLETON
-
Constructor Summary
Constructors Constructor Description InstantCodec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.time.Instant
decode(UTF8FaunaParser parser)
Decodes an object from the providedUTF8FaunaParser
.void
encode(UTF8FaunaGenerator gen, java.time.Instant obj)
Encodes the specified object using the providedUTF8FaunaGenerator
.java.lang.Class<java.time.Instant>
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
-
-
-
-
Field Detail
-
SINGLETON
public static final InstantCodec SINGLETON
-
-
Method Detail
-
decode
public java.time.Instant decode(UTF8FaunaParser parser) throws CodecException
Description copied from interface:Codec
Decodes 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, java.time.Instant obj) throws CodecException
Description copied from interface:Codec
Encodes the specified object using the providedUTF8FaunaGenerator
.- Parameters:
gen
- The generator to use for writing and encoding the data.obj
- The object of typeT
to encode.- Throws:
CodecException
- If an error occurs during encoding.
-
getCodecClass
public java.lang.Class<java.time.Instant> getCodecClass()
Description copied from interface:Codec
Gets the class associated with this codec.- Returns:
- The
Class
type that this codec handles.
-
-