Package org.bson.internal
Class OverridableUuidRepresentationCodecRegistry
- java.lang.Object
-
- org.bson.internal.OverridableUuidRepresentationCodecRegistry
-
- All Implemented Interfaces:
CodecRegistry
public class OverridableUuidRepresentationCodecRegistry extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
<T> Codec<T>
get(java.lang.Class<T> clazz)
Gets aCodec
for the given Class.<T> Codec<T>
get(org.bson.internal.ChildCodecRegistry<T> context)
UuidRepresentation
getUuidRepresentation()
CodecProvider
getWrapped()
int
hashCode()
-
-
-
Method Detail
-
getUuidRepresentation
public UuidRepresentation getUuidRepresentation()
-
getWrapped
public CodecProvider getWrapped()
-
get
public <T> Codec<T> get(java.lang.Class<T> clazz)
Description copied from interface:CodecRegistry
Gets aCodec
for the given Class.- Specified by:
get
in interfaceCodecRegistry
- Type Parameters:
T
- the class type- Parameters:
clazz
- the class- Returns:
- a codec for the given class
-
get
public <T> Codec<T> get(org.bson.internal.ChildCodecRegistry<T> context)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-