Package org.bson.codecs
Class UuidCodec
- java.lang.Object
-
- org.bson.codecs.UuidCodec
-
- Direct Known Subclasses:
OverridableUuidRepresentationUuidCodec
@Deprecated(since="2022-10-31") public class UuidCodec extends java.lang.Object implements Codec<java.util.UUID>
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.Encodes and decodesUUID
objects.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description UuidCodec()
Deprecated.The constructor for UUIDCodec, default is JAVA_LEGACYUuidCodec(UuidRepresentation uuidRepresentation)
Deprecated.The default UUIDRepresentation is JAVA_LEGACY to be compatible with existing documents
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.UUID
decode(BsonReader reader, DecoderContext decoderContext)
Deprecated.Decodes a BSON value from the given reader into an instance of the type parameterT
.void
encode(BsonWriter writer, java.util.UUID value, EncoderContext encoderContext)
Deprecated.Encode an instance of the type parameterT
into a BSON value.java.lang.Class<java.util.UUID>
getEncoderClass()
Deprecated.Returns the Class instance that this encodes.UuidRepresentation
getUuidRepresentation()
Deprecated.TheUuidRepresentation
with which this instance is configuredjava.lang.String
toString()
Deprecated.
-
-
-
Constructor Detail
-
UuidCodec
public UuidCodec(UuidRepresentation uuidRepresentation)
Deprecated.The default UUIDRepresentation is JAVA_LEGACY to be compatible with existing documents- Parameters:
uuidRepresentation
- the representation of UUID- See Also:
UuidRepresentation
-
UuidCodec
public UuidCodec()
Deprecated.The constructor for UUIDCodec, default is JAVA_LEGACY
-
-
Method Detail
-
getUuidRepresentation
public UuidRepresentation getUuidRepresentation()
Deprecated.TheUuidRepresentation
with which this instance is configured- Returns:
- the uuid representation
- Since:
- 3.12
-
encode
public void encode(BsonWriter writer, java.util.UUID value, EncoderContext encoderContext)
Deprecated.Description copied from interface:Encoder
Encode an instance of the type parameterT
into a BSON value.
-
decode
public java.util.UUID decode(BsonReader reader, DecoderContext decoderContext)
Deprecated.Description copied from interface:Decoder
Decodes a BSON value from the given reader into an instance of the type parameterT
.
-
getEncoderClass
public java.lang.Class<java.util.UUID> getEncoderClass()
Deprecated.Description copied from interface:Encoder
Returns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClass
in interfaceEncoder<java.util.UUID>
- Returns:
- the Class instance that this encodes.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-