Package org.bson.codecs
Class StringCodec
java.lang.Object
org.bson.codecs.StringCodec
- All Implemented Interfaces:
Codec<String>
,Decoder<String>
,Encoder<String>
,RepresentationConfigurable<String>
public class StringCodec
extends Object
implements Codec<String>, RepresentationConfigurable<String>
Encodes and decodes
String
objects.- Since:
- 3.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondecode
(BsonReader reader, DecoderContext decoderContext) Decodes a BSON value from the given reader into an instance of the type parameterT
.void
encode
(BsonWriter writer, String value, EncoderContext encoderContext) Encode an instance of the type parameterT
into a BSON value.Returns the Class instance that this encodes.Gets the BsonRepresentation.withRepresentation
(BsonType representation) Returns an immutable codec with the given representation.
-
Constructor Details
-
StringCodec
public StringCodec()Constructs a StringCodec with a String representation.
-
-
Method Details
-
getRepresentation
Description copied from interface:RepresentationConfigurable
Gets the BsonRepresentation.- Specified by:
getRepresentation
in interfaceRepresentationConfigurable<String>
- Returns:
- the BsonRepresentation
-
withRepresentation
Description copied from interface:RepresentationConfigurable
Returns an immutable codec with the given representation. If the provided representation is not supported an exception will be thrown.- Specified by:
withRepresentation
in interfaceRepresentationConfigurable<String>
- Parameters:
representation
- the BsonRepresentation.- Returns:
- a new Codec with the correct representation.
-
encode
Description copied from interface:Encoder
Encode an instance of the type parameterT
into a BSON value. -
decode
Description copied from interface:Decoder
Decodes a BSON value from the given reader into an instance of the type parameterT
. -
getEncoderClass
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<String>
- Returns:
- the Class instance that this encodes.
-