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
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondecode(BsonReader reader, DecoderContext decoderContext) Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, String value, EncoderContext encoderContext) Encode an instance of the type parameterTinto 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:RepresentationConfigurableGets the BsonRepresentation.- Specified by:
getRepresentationin interfaceRepresentationConfigurable<String>- Returns:
- the BsonRepresentation
-
withRepresentation
Description copied from interface:RepresentationConfigurableReturns an immutable codec with the given representation. If the provided representation is not supported an exception will be thrown.- Specified by:
withRepresentationin interfaceRepresentationConfigurable<String>- Parameters:
representation- the BsonRepresentation.- Returns:
- a new Codec with the correct representation.
-
encode
Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value. -
decode
Description copied from interface:DecoderDecodes a BSON value from the given reader into an instance of the type parameterT. -
getEncoderClass
Description copied from interface:EncoderReturns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClassin interfaceEncoder<String>- Returns:
- the Class instance that this encodes.
-